当元素浮动导致它的父元素.bigbox塌陷时,可以使用( )清除浮动
A: .bigbox::after{ display: block; content: ""; clear: both; }
B: .bigbox{clear: both; }
C: .bigbox::before{ display: block; clear: both; }
D: .bigbox{ display: block; content: "" }
A: .bigbox::after{ display: block; content: ""; clear: both; }
B: .bigbox{clear: both; }
C: .bigbox::before{ display: block; clear: both; }
D: .bigbox{ display: block; content: "" }
举一反三
- 以下选项中使用伪元素选择符让浮动元素的父元素高度自适应的是 A: 元素:after{content:"";display:block;clear:both} B: 元素:after{content:"";display:block;height:0;clear:both} C: 元素:after{content:"";display:block;clear:both;height:0;overflow:hidden;visibility:hidden} D: 元素:after{display:block;clear:both; height:0;overflow:hidden;visibility:hidden }
- 下面哪些方法可以清除浮动?(多选) A: clear:both; B: overflow:hidden; C: 为父盒子设置height属性 D: .clearfloat:after{display:block;clear:both;content:"";visibility:hidden;height:0}.clearfloat{zoom:1}
- 下面哪些方法可以清除浮动?(多选) A: clear:both; B: overflow:hidden; C: 为父盒子设置height属性 D: .clearfloat:after{display:block;clear:both;content:"";visibility:hidden;height:0}.clearfloat{zoom:1}
- 如果要清除浮动带来的影响,需要用到下面哪个css属性? A: display:block B: display:inline C: float:both D: clear:both
- 以下推荐使用清除浮动的方式有哪几种()。 A: 在浮动元素末尾添加一个空的标签例如 B: 通过设置父元素overflow值为hidden C: 给父元素设置高度 D: 给父元素添加clearfix类,设置.clearfix:after{display:block;clear:both}