css 设置背景图注意事项

设置背景图后要注意其层级关系

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

你可能感兴趣的:(css 设置背景图注意事项)