2010年3月29日月曜日

clearfix決定版!

<指定の仕方>
floatを解除したいhtmlソースの直ぐ下に
(例)<div class="clearfix"></div>
を入れて、
CSSに
/* new clearfix */ 
.clearfix:after { 
visibility: hidden; 
display: block; 
font-size: 0; 
content: " "; 
clear: both; 
height: 0; 

* html .clearfix             { zoom: 1; } /* IE6 */ 
*:first-child+html .clearfix { zoom: 1; } /* IE7 */ 
と指定する。


参考サイト
http://coliss.com/articles/build-websites/operation/css/css-new-clearfix-hack.html

0 件のコメント: