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; }
フィドルのデモンストレーション