提问人:Joy 提问时间:6/10/2015 更新时间:6/10/2015 访问量:1133
CSS:清除内联元素
CSS: clear on inline elements
问:
检查这个 JSFiddle:
<IMG src="https://www.google.com.hk/images/srpr/logo11w.png" alt="This image will illustrate floats">
<span>The contents of floats are </span>
图像是浮动的,并且具有 .但是,如果 has 显示值 或 ,则不会创建间隙。仅当 时,才会创建间隙。span
clear:both
span
inline
inline-block
block
我检查了规格,它说:
both:要求框的上边框边缘低于底部 导致的任何右浮动和左浮动框的外边缘 来自源文档前面的元素。
它没有提到如何影响间隙的创建。谁能帮忙解释一下?display
答:
评论