という名前の背景画像を含む<h1>という名前の div クラスにヘッダーを配置しようとしています。を使用してそれらを積み重ねて追加しましたが、まだ上に配置されていません。lightlight.pngZ-indexposition:relative<h1><div class=light>
私は何を間違っていますか?これが私のhtmlコードです:
<body>
<div class="light"></div>
<h1>sdfdsf</h1>
</body>
CSS コード:
body {
background-image: url(images/bg.jpg);
background-repeat: repeat;
z-index:1;
}
.light {
background-image: url(images/light.png);
margin-left:auto;
margin-right:auto;
z-index:2;
width:763px;
height:566px;
position:relative;
}
h1 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 48px;
color: rgba(255,255,255,1);
position:relative;
z-index:5;
}