如何在我的content-bg上显示框阴影?

时间:2012-05-21 04:50:29

标签: css html5 html css3

我正在开发一个名为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;
}

1 个答案:

答案 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;
}