我已经上传了网站 mrandmrsmagic.com,虽然它在最大化时看起来很好,但最小化时只显示了一半(我拿走了滚动条,因为它在最大化时会显示,所以它可能有一些松散的东西。 )。网站本身,自从我在 Photoshop 中对它们进行切片以来,我使用了 5 个不同的背景图像(自从我从头开始构建网站已经有一段时间了,所以编码可能非常混乱。)下面是我用于的 5 个 div 的 css身体。
#body {
width: 1024px;
height: 583px;
marin: 0;
padding: 0;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body_02.jpg) no-repeat left top;
}
#body2 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body2_02.jpg) no-repeat left top;
}
#body3 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body3_02.jpg) no-repeat left top;
}
#body4 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body4_02.jpg) no-repeat left top;
}
#body5 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body5_02.jpg) no-repeat left top;
}
#body6 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body6_02.jpg)
}
我尝试去掉高度并将宽度设置为 100%,但后来它没有得到纠正,它几乎使它变得更糟。那么有没有办法切换css,我可以在哪里保留5个div?也许我应该只制作一个初始 div 标签,然后为身体制作 5 个类标签。那可能吗?任何和所有的帮助表示赞赏,谢谢。