即使头等舱的顶值相同,如何在firstClass之前强制secondClass?
如果可能的话用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/

谢谢。

最佳答案

只需使用CSS在屏幕上移动它:

$(".firstClass").css('top', $(".secondClass").height());
$(".secondClass").css('top', 0);


如果要在DOM中移动元素,那么:

$(".firstClass").before($(".secondClass"));


FIDDLE

07-28 12:10