即使第一类具有相同的最高值,如何在第一类之前强制第二类?如果可能的话,使用 jquery 或只是 css hack。firstClass 的值可能与此示例中的不同,但 secondClass 的值是固定的。
<html>
<body>
<div class="firstClass">Hello</div>
<div class="secondClass">This is Warning!</div>
</body>
</html>
和CSS
.firstClass {
position: fixed;
top: 0px;
}
.secondClass {
position: fixed;
top: -25px;
}
在线演示http://jsfiddle.net/AQUgk/
谢谢你。