最初のクラスに同じトップ値がある場合でも、firstClass の前に secondClass を強制する方法は? 可能であれば、jquery または css ハックで。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/
ありがとうございました。