四个div在同一个布局环境BFC,在哪个bfc中啊?
无标题文档 * { padding:0; margin:0; } #red, #yellow, #orange, #green { width:100px; height:100px; float:left; } #red { background-color:red; } #yellow { background-color:yellow; } #orange { background-color:orange; } #green { background-color:green; }
Here is the text!
该段代码本意要形成两行两列的布局,但是由于#red,#yellow,#orange,#green四个div在同一个布局环境BFC中,因此虽然它们位于两个不同的div(#c1和#c2)中,但仍然不会换行,而是一行四列的排列。
我来问:四个div在同一个布局环境BFC,在哪个bfc中啊?4个浮动的div是4个bfc环境? |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
拙见:
问题一:四个div不处于同一个BFC中。
问题二:4个浮动的div是4个bfc环境。 |
|
|
|
|