我有以下html
<div id="someid">
<img src="" />
<div class="someclass"></div>
</div>
<div id="other">
</div>
和下面的CSS
#someid{position: relative;}
.someclass{position: absolute; left: 100px; width: 100px; height: 100px; background-color: red;}
img{floa/t: left; background-color: blue; width: 100px; height: 100px;}
#other{width: 100px; height: 100px; background-color: green; position: relative;}
我不需要图像向左浮动。 演示
绿色背景的 div 应该在下面。这个演示在 chrome 中工作正是我想要的,但不是在 Mozilla Firefox 中。