我在 PSD 中设计了一个网页,并且正在对其进行转换。在我的主要内容中,我有一个纯色的背景颜色,但我在一个单独的图层上有一个发光效果,它出现在背景颜色的顶部。
我有一个包含所有代码的容器,我有一个页眉、主页和页脚。在主体中,我添加了纯色背景颜色,还添加了我从 PSD 切片的发光的背景图像。但是,纯色背景颜色似乎没有显示,它只是显示发光效果。下面的图片显示了它的外观和外观:
CSS:
Html {
background: white;
}
#container {
width: 955px;
height: 900px;
margin: 0px auto 0px auto;
}
#main{
background: url(../images/slogan.png) top left no-repeat;
background-color: #282d37;
height: 900px;
width: 955px;
}