我正在开发一个名为http://ccrccmo.com的网站,我无法通过css显示内容-bg上的方框阴影。
nav{
background:url(images/nav-bg2.png);
height:74px;
box-shadow: 0px 3px 5px #222;
}
#content-bg{
background:white;
margin-top:0px;
z-index:-1000;
}
答案 0 :(得分:2)
你错过了
box-shadow: inset 0 3px 10px #000;
box-shadow: initial;
试
#content-bg {
background: white;
margin-top: 0px;
box-shadow: inset 0 3px 10px #000;
box-shadow: initial;
}