Category: ‘CSS’

Flex ブラウザのスクロールバーの表示制御

2014年9月4日 Posted by PURGE

覚え書き。

index.template.html CSSのbody width 記述を変更

<style type="text/css" media="screen">
    html, body  { height:100%; width:1232px;}
    body { margin:0; padding:0; 
           overflow:auto;
           text-align:center; 
           background-color: ${bgcolor}; 
           object:focus { outline:none; }
           #flashContent { display:none;}
</style>

表示制御をする場合。

    overflow:visible
    overflow:scroll
    overflow:hidden
    overflow:auto

※但しIEの場合、overflow:scrollに設定するとスクロールバーが2重になって表示される場合がある。

IEの条件付きコメントについて

2012年1月13日 Posted by PURGE

いまさらながら、覚え書き。

<!--[if IE]>
    IEでのみ表示される
<!--[endif]>
<!--[if gte IE 6]>
    IE6以降でのみ表示される
<!--[endif]>
<!--[if !IE]>
    IEでは表示されない
<!--[endif]>

ボーダーのマージンとパディング

2011年8月11日 Posted by PURGE