floatを解除するmicro clearfix
floatを使用している親要素にclearfixクラスを適用することで、floatを解除します。
古いブラウザには対応しないシンプルなコードのmicro clearfixです。
floatを解除したい親要素に、「class="cf"」を指定します。
cfはどんな名前でも構いません。
そして、CSSではcfクラスに以下の指定をします。
1 2 3 4 5 6 7 8 9 10 11 12 |
.cf:before, .cf:after { content: ""; display: table; } .cf:after { clear: both; } /* For IE 6/7 only */ .cf { *zoom: 1; } |