What does "a" in the rgba stand for? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What does "a" in the rgba stand for?

rgba question

10th Jul 2017, 10:02 PM
Francis Skinner
Francis Skinner - avatar
3 Answers
+ 6
RGBA color values are an extension of RGB color values with an alpha channel - which specifies the opacity of the object. An RGBA color value is specified with: rgba(red, green, blue, alpha). The alpha parameter is a number between 0.0 (fully transparent) and 1.0 (fully opaque).
10th Jul 2017, 10:02 PM
Francis Skinner
Francis Skinner - avatar
+ 4
alpha
10th Jul 2017, 10:06 PM
Jordan Chapman
Jordan Chapman - avatar
+ 2
It stands for opacity. instead of writing color:rgb(255,0,255); opacity: 0.1; you simply write color:rgba(255,0,255,0.1)
10th Jul 2017, 10:06 PM
Raz
Raz - avatar