我正在做我的网站,但我有一个问题。我有一张背景图片,在这张图片中,不同的图层:图层的大小和位置完全相同。我试过这个:
HTML
<body>
<div id="1">
</div>
<div id="2">
</div>
</body>
CSS
body {
background-color: #feecc5;
font-size: 13px;
position: absolue;
background-image: url(images/fond.png);
width: 600px;
height: 960px;
background-position: center top;
background-repeat: no-repeat;
}
#1 {
background-image: url(images/formation.png);
width: 600px;
height: 960px;
z-index: 1;
}
#2 {
background-image: url(images/experiences.png);
width: 600px;
height: 960px;
z-index: 2;
}
身体的背景图像是完美的,在不同的图层之后非常糟糕......我尝试了一个位置后我不明白:div的中心,什么都没有。还要把所有的div“层”放在通用的div里面,也不行。我不知道我必须这样做。非常感谢您的帮助。