0
what is the code for color white for CSS?
5 odpowiedzi
0
rgb(250,250,250)
- 1
If you want the font color white then just color:white; is ok but if you want background color white then background-color: white;
- 1
#FFF
- 1
#ffffff
- 1
you can either use hex code for white :- #ffffff
or simply use "color: white;" in CSS
or can use RGB color code (250,250,250)