Problem Statement
Which of the following is a valid CSS color value?
Explanation
The rgb(255,0,0) value represents red in RGB color format. CSS supports named colors, HEX, RGB, RGBA, and HSL. This is often asked in web styling interviews.
Code Solution
SolutionRead Only
h1 { color: rgb(255, 0, 0); }