0

最初のクラスに同じトップ値がある場合でも、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/

ありがとうございました。

4

1 に答える 1

0

CSS を使用して画面上で移動するには:

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

DOM 内の要素を移動したい場合:

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

フィドル

于 2012-04-15T13:19:41.120 に答える