我在CSS中的#footermain div上有一个框阴影,但是我不能让它显示在绿色页脚上方。我尝试了一切,我无法弄明白。
#footermain {
background: #1f6c04;
width: 100%;
-moz-box-shadow: 0 -5px 6px rgba(0,0,0,0.5);
-webkit-box-shadow: 0 -5px 6px rgba(0,0,0,0.5);
box-shadow: 0 -5px 6px rgba(0,0,0,0.5);
}
#footerinner {
height: 150px;
width: 960px;
position: relative;
margin: 0 auto;
}
以下是那些不想检查页面的人的CSS
答案 0 :(得分:1)
提供
position : relative;
到#footermain。