Dream Weaver CS5のカスケードスタイルシートを使用して、Webページに背景を追加しようとしています。私は幸運にもこのコードを見つけることができました:
html, body {height: 100%; width: 100%; padding: 0; margin: 0;}
#full-screen-background-image {z-index: -999; min-height: 100%; min-width: 1024px; width: 100%; height: auto; position: fixed; top: 0; left: 0;}
#wrapper {position: relative; width: 800px; min-height: 400px; margin: 100px auto; color: #333;}
これはスタイルシートに追加され、このビットは次のとおりです。
<body>
<img alt="full screen background image" src="/background.jpg" id="full-screen-background-image" />
<div id="wrapper">
<p>Content goes here...</p>
</div>
</body>
これはHTMLに追加されます。
ただし、画像やテキストなど、ページに別の要素を追加しようとすると、スタイルシートのコードで背景がまったく設定されていないかのように、設定した背景のすぐ下に画像が表示されます。
誰かが私が間違っている可能性があることを教えてもらえますか?