Two ways to add a mask effect to the background image using background-color through CSS

Two ways to add a mask effect to the background image using background-color through CSS

If a div sets background-color and background-image at the same time, the color is below the img layer and the masking effect cannot be achieved. Therefore, you need to create another div as its child div, and then set the background color of the child div. There are two methods:

The first one, the code is as follows:

css:

.wrap{
    position: relative;
    background: url(i/pic4.jpg) no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
}
.warp-mask{
    height:100%;
    width:100%;
    background: rgba(0,0,0,.4);
}

html:

<div class="wrap">
    <div class="wrap-mask"></div>
</div>

The second method is to set it through the after pseudo element. The code is as follows:

css:

.wrap{
    position: relative;
    background: url(i/pic4.jpg) no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
}
.wrap-mask:after{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: yellow;
    opacity: 0.2;
    z-index: 1;
    width: 100%;
    height: 100%;
}

html:

<div class="wrap">
    <div class="wrap-mask"></div>
</div>

Summarize

The above is what I introduced to you about using background-color through CSS to add a mask effect to the background image. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Detailed explanation of the decimal padding problem of decimal data type in MySQL

>>:  CSS and HTML and front-end technology layer diagram

Recommend

MySql8 WITH RECURSIVE recursive query parent-child collection method

background When developing a feature similar to c...

Install and build a server environment of PHP+Apache+MySQL on CentOS

Yum (full name Yellow dog Updater, Modified) is a...

How to deploy a simple c/c++ program using docker

1. First, create a hello-world.cpp file The progr...

An article tells you how to write a Vue plugin

Table of contents What is a plugin Writing plugin...

How to build a DHCP server in Linux

Table of contents 1. Basic knowledge: 2. DHCP ser...

Docker exposes port 2375, causing server attacks and solutions

I believe that students who have learned about th...

Comprehensive analysis of isolation levels in MySQL

When the database concurrently adds, deletes, and...

Detailed explanation of Javascript basics loop

Table of contents cycle for for-in for-of while d...

JS uses clip-path to implement dynamic area clipping function

background Today, I was browsing CodePen and saw ...

Multiple ways to insert SVG into HTML pages

SVG (Scalable Vector Graphics) is an image format...

Setting the engine MyISAM/InnoDB when creating a data table in MySQL

When I configured mysql, I set the default storag...

Process parsing of reserved word instructions in Dockerfile

Table of contents 1. What is Dockerfile? 2. Analy...

How to periodically clean up images that are None through Jenkins

Preface In the process of continuous code deliver...