What is the meaning of rgba in css3

WBOY
Release: 2022-04-22 19:00:23
Original
2672 people have browsed it

rgba is the abbreviation of Red, Green, Blue and alpha in CSS3. It is a function for setting colors. This function generates colors through the superposition of red, green, blue and transparency; among them, red, green and blue are The value range of color is 0 to 255, and the value range of transparency is 0 to 1, with 0 representing completely transparent and 1 representing completely opaque.

What is the meaning of rgba in css3

The operating environment of this tutorial: Windows 10 system, CSS3&&HTML5 version, Dell G3 computer.

What is the meaning of rgba in css3

RGB is the abbreviation of the three words Red (red), Green (green), and Blue (blue). RGBA color values ​​are an extension of RGB color values, adding an alpha channel, which specifies the opacity of the object.

RGBA means red, green, blue, transparency (English: Red, Green, Blue, Alpha).

  • Red (R) An integer between 0 and 255, representing the red component of the color. .

  • Green (G) An integer between 0 and 255, representing the green component of the color.

  • Blue (B) An integer between 0 and 255, representing the blue component of the color.

  • Transparency (A) has a value between 0 and 1, representing transparency.

The syntax is;

rgba(red, green, blue, alpha)
Copy after login

The example is as follows:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>123</title>
<style>
#p1 {background-color:rgba(255,0,0,0.3);}
#p2 {background-color:rgba(0,255,0,0.3);}
#p3 {background-color:rgba(0,0,255,0);}
#p4 {background-color:rgba(192,192,192,0.3);}
#p5 {background-color:rgba(255,255,0,0.3);}
#p6 {background-color:rgba(255,0,255,0.3);}
</style>
</head>
<body>
<p>RGB 颜色,并使用透明度:</p>
<p id="p1">红色</p>
<p id="p2">绿色</p>
<p id="p3">蓝色</p>
<p id="p4">灰色</p>
<p id="p5">黄色</p>
<p id="p6">樱桃色</p>
</body>
</html>
Copy after login

Output result:

What is the meaning of rgba in css3

(Learning video sharing: css video tutorial)

The above is the detailed content of What is the meaning of rgba in css3. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!