Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你如何制作一个在元素position: fixed后面有显示的元素position: static?更改 z-index 似乎并不重要,因为它们不是绝对的。
position: fixed
position: static
您可以在固定元素上使用负 z-index。
<div id="fixed">This is fixed</div> <div id="static">This is static</div> #fixed { position:fixed; z-index:-1; }
小提琴示范