1 回答

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超13個(gè)贊
添加z 索引.sticky
將設(shè)置及其后代的 z 順序。
html,
body {
? min-height: 100%;
}
body {
? margin: 0;
? background-color: rgb(233, 233, 233);
}
.sticky {
? position: sticky;
? height: 40px;
? width: 100%;
? background-color: orange;
? z-index: 1;
}
.fixed {
? position: fixed;
? margin-top: 40px;
? height: 100%;
? width: 100%;
? background-color: rgba(34, 138, 34, 0.555);
}
.elements {
? background-color: rgb(231, 77, 39);
}
.elements button {
? position: relative;
}
<div class="sticky">
? <div class="fixed">
? </div>
</div>
<div class="elements">
? <button>I should behind this green wall!</button>
</div>
- 1 回答
- 0 關(guān)注
- 181 瀏覽
添加回答
舉報(bào)