Multiple choice technology web technology

In CSS, you have the following options for changing text color?

  1. Common name and Hexcolor only

  2. Common name, RBG value, Hexcolor

  3. RBG value, Hexcolor

  4. Hexcolor only

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

CSS supports three color specification methods: common names (red, blue), RGB values (rgb(255, 0, 0)), and hexadecimal notation (#FF0000). Option B is correct, though it says 'RBG' instead of 'RGB' - a typo but the intended meaning is clear. Hex-only or name-only are incomplete options.