如果要清除浮动带来的影响,需要用到下面哪个css属性?
A: display:block
B: display:inline
C: float:both
D: clear:both
A: display:block
B: display:inline
C: float:both
D: clear:both
举一反三
- 当元素浮动导致它的父元素.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: 元素: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: float B: clear C: display D: position
- 下面哪些方法可以清除浮动?(多选) A: clear:both; B: overflow:hidden; C: 为父盒子设置height属性 D: .clearfloat:after{display:block;clear:both;content:"";visibility:hidden;height:0}.clearfloat{zoom:1}