为我的背景图片添加了新的div类后,顶部,底部和页面菜单变为白色。 的的style.css
#boundless{
background-image:url('http://thehypebr.com/wp-content/uploads/2010/09/boundless-sem-branco-2.jpg');
background-repeat:no-repeat;
background-attachment:fixed;
line-height:20px;
font-size:14px;
font-family:"Trebuchet MS";
margin:0
}
的index.php
<body>
<div id='boundless' onclick='window.location.href="http://boundlessny.com/clothing"'>
答案 0 :(得分:5)
使用Firebug,我发现问题是由style.css中的第16行引起的:
margin:165px auto 20px;
如何调试此类问题:
Inspect Element
Style
选项卡来隔离CSS /元素。如果需要,请展开节点。答案 1 :(得分:0)
在你的style.css中,你有许多#xxxxx和
background-color:white; and background-color:#fff;
示例:#wrapper2
有此。
所以它正在做你告诉它要做的事。