背景灰色

时间:2013-10-20 09:04:14

标签: html css

在某些浏览器中,我的网站http://haptotherapiemris.nl,背景显示为灰色块。

这是我的后台css代码:

.main {
margin: 0 auto;
background: transparent url(http://dansolution.nl/klanten/background/bg.jpg) repeat-y                center top;
width: 1000px;
min-height: 1000px;
text-align: center;
background-repeat: no-repeat;
background-attachment: fixed;
}

2 个答案:

答案 0 :(得分:1)

检查你的体型:

body {
background-color: #595959;   /*  here is the color  */
margin: 0 auto;
padding: 0;
width: 100%;
color: #595959;
font: normal 13px/1.8em Tahoma, Arial, Helvetica, sans-serif;
text-align: center;
letter-spacing: 0.06em;
}

style.css第2行。您需要从正文样式中删除background-color

答案 1 :(得分:1)

好。你有什么问题?

如果您没有指定浏览器,浏览器将使用自己的默认背景颜色。在你的情况下,你已经为div.main指定了一个“透明”的背景颜色,它完全符合你的期望 - 它是无色的,显示了div.main背后的元素。 div.main背后的元素是body,它有一个背景颜色:#595959。这就是您的页面背景为灰色的原因。

来源: http://www.w3schools.com/css/css_background.asp