假设我有两个元素:
<span class="b">This is inline element</span>
<div class="a"></div>
.a {
width:100px;
height:100px;
background: red;
float: left;
}
元素在span
float元素之后:<a href="http://jsfiddle.net/YVW6Y/1/" rel="nofollow">demo
但我认为内联元素是标准流程,所以它的位置不应该受到浮动元素的影响?为什么会这样?