想象一下下面的 HTML 代码:
<html>
...
<div id="stuff1">
barbaz
</div>
<div id="stuff2">
foobar
</div>
...
</html>
现在,假设我想使用 CSS 以便
stuff2
出现在上面stuff1
。有没有办法在不使用position: absolute
且不更改 HTML 代码的情况下做到这一点?
我试过float
这样使用:
#stuff2 { float: left; }
#stuff1 { clear: left; }
但它没有成功。它与不使用
float
.