What does the "a" in rgba mean? CSS RGBA Color Guide

What does the "a" in rgba mean? CSS RGBA Color Guide

RGBA is a CSS color that can set color value and transparency

Below is the use of rgba() to set the white color to 50% transparency.

p {
color: rgba(255, 255, 255, 0.5);
}

RGBA is an extension of the RGB color model. This acronym stands for the initials of the three primary colors red, green and blue, and the Alpha value represents the transparency/opacity of the color.

RGBA Syntax

The format of RGBA color representation is:

rgba(red, green, blue, alpha)

The first three values ​​(red, green, and blue) range from 0 to 255 as integers or from 0% to 100% as percentages. These values ​​describe the amounts of the three primary colors red, green and blue that are present in the intended color.
If you want to set pure red, set the red parameter to 255, and set green and blue to 0.

background-color: rgba(255, 0, 0, 1);

result:

Percentages can also be used:

background-color: rgba(100%, 0%, 0%, 1);

result:

The fourth value, alpha, specifies the transparency/opacity of the color and ranges from 0.0 to 1.0.

The following example sets the yellow color to 50% transparency:

color: rgba(255, 242, 0, 0.5);

CSS translucency is compatible with Firefox, IE, and Chrome, and the current browser versions are relatively high. You can use it in your project with confidence.

<<:  3D tunnel effect implemented by CSS3

>>: 

Recommend

How to use nginx as a proxy cache

The purpose of using cache is to reduce the press...

JavaScript to dynamically load and delete tables

This article shares the specific code of JavaScri...

Detailed steps to use Arthas in a Docker container

What can Arthas do for you? Arthas is Alibaba'...

Best Practices for Developing Amap Applications with Vue

Table of contents Preface Asynchronous loading Pa...

Summary of basic knowledge points of Linux group

1. Basic Introduction of Linux Group In Linux, ev...

How familiar are you with pure HTML tags?

The following HTML tags basically include all exis...

Pure CSS code to achieve flow and dynamic line effects

Ideas: An outer box sets the background; an inner...

Interviewer asked how to achieve a fixed aspect ratio in CSS

You may not have had any relevant needs for this ...

Our thoughts on the UI engineer career

I have been depressed for a long time, why? Some t...

Implementation of navigation bar and drop-down menu in CSS

1. CSS Navigation Bar (1) Function of the navigat...

How to configure Nginx to support ipv6 under Linux system

1. Check whether the existing nginx supports ipv6...

The difference between Vue interpolation expression and v-text directive

Table of contents 1. Use plugin expressions 2. Us...

Detailed explanation of several methods of installing software in Linux

1. RPM package installation steps: 1. Find the co...