- 履歴一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- 障害メモ/IE9でclear bothが効かない へ行く。
- 1 (2013-04-11 (木) 12:28:16)
キーワード†
- IE9(Internet Explore 9)
- HTML
- CSS
現象†
ありがちな「clear: both;」がIE9でなぜか効かない。
.left {
float: left;
}
.right {
float: right;
}
.container:after {
content: "";
display: block;
clear: both;
}
原因†
分からん。
対策†
.container {
overflow: auto;
}
もしかしたら width も入れてあげないとだめかも。詳しくは参考サイトで。