📜  背景图像上的 CSS 图层 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:32.787000             🧑  作者: Mango

代码示例1
.background {
    background:url('../img/bg/diagonalnoise.png');
    position: relative;
}

.layer {
    background-color: rgba(248, 247, 216, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}