Can anyone tell me what is the color code for transparency in CSS like white = \"#FFFFFF\"? As I am using following code, to convert the color codes into int:
Co
There is no hex code for transparency. For CSS, you can use either transparent or rgba(0, 0, 0, 0).
transparent
rgba(0, 0, 0, 0)