0
How to add Alpha channel in colors in HTML, i.e. what's the code for RGBA color?
4 Respuestas
+ 3
background: rgba(100, 100, 100, 0.5)
last param is the alpha
+ 2
RGB is 0 to 255, A is 0 to 1
+ 1
oh so there's no format like #rrggbbaa?? and Nicolas dassault pilon, these values are in numerics and not hexadecimal??