设置背景图后要注意其层级关系
.content {
width: 100%;
height: 100%;
background-image: url(../../static/common/img_bg.png);
position: fixed;
left: 0;
top: 0;
// 注意调整层级关系 否则会导致上面的元素不显示
z-index: -1;
}
网友评论