css 为图像背景添加背景颜色透明度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 为图像背景添加背景颜色透明度相关的知识,希望对你有一定的参考价值。


// this is the image background
.header_main {
    background-image: url('http://powell.test/wp-content/uploads/2018/10/mountains@2x.jpg');
    min-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

// this is the background color with blue transparency
.header_main::before {
    background-color: #223a5ce6;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}

以上是关于css 为图像背景添加背景颜色透明度的主要内容,如果未能解决你的问题,请参考以下文章