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.
私のhtmlページで、ヘッダーを次のように修正しました:
position : fixed
下にスクロールすると、ページのコンテンツがヘッダーを通過します。どうすればこれを修正できますか?
HTML が次のようになっているとします。
<div id="header">...</div> <div id="content">...</div>
次の CSS を試してください。
<style type="text/css"> #header { position:fixed; z-index:1; } #content { position:relative; z-index:2; } </style>