There are two common ways to make div background transparent:1. Set the opacity attribute to a value of 0~1, 0 for transparent and 1 for opaque. However, this method will also make the content on the div transparent. The effect is as follows: 2. Set the background-color in rgba format. The format is: background-color:rgba(0,0,0,0~1), where 0 means transparent and 1 means opaque. The code is as follows : <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .id{ width: 600px; height: 300px; } .tm1{ margin: 40 auto; text-align: center; line-height: 200px; width: 800px; height: 200px; background-color: yellow; opacity: 0.6; } .tm2{ margin: 40 auto; text-align: center; line-height: 200px; width: 800px; height: 200px; background-color: rgba(255, 255, 0, 0.5); } </style> </head> <body> <!--Background div--> <div class="id"> <!--Transparent div method 1--> <div class="tm1">Transparent div method 1, set the transparency through opacity, the text on the div is also transparent: opacity: 0.6;</div><br> <!--Transparent div method 2--> <div class="tm2">Transparent div method 2, set transparency through rgba, the text on the div is not transparent: background-color:rgba(255,0,0,0.5);</div> </div> </body> </html> Here is another point to note: RGBA stands for Red, Green, Blue, Alpha (English: Red, Green, Blue, Alpha). Color code comparison chart link: This is the end of this article about examples of how to set div background transparency. For more relevant div background transparency content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! |
<<: Importance of background color declaration when writing styles
>>: Detailed steps for manually configuring the IP address in Linux
1. Node server setup + database connection The op...
How to add a loading animation every time I scrol...
Below, we introduce three ways to draw heart shap...
Some friends, when learning about databases, acci...
1. Transactions have ACID characteristics Atomici...
1. Introduction MySQL Group Replication (MGR for ...
At the very beginning, let's talk about what ...
Prerequisites: Docker is already installed 1. Fin...
Table of contents Preface Basic Concepts of Argum...
Shopify Plus is the enterprise version of the e-c...
Today I experimented with the network settings un...
First, pull the image (or just create a container...
Grid is a two-dimensional grid layout system. Wit...
1. Introduction In the past, if you wanted to sta...
I searched on Baidu. . Some people say to use the...