September 2024
Intermediate to advanced
743 pages
27h 48m
English
In this section, I’ll show you how to use CSS to define the color of elements on a web page and how to format text.
To define the color of a text (or the foreground color in general), you can use the CSS property color. You can define the color value in several different ways:
RGB values: In this case, you define the value as a composition of red, green, and blue components, where each component is expressed by a number between 0 and 255. For example, the CSS value rgb(255,255,0) represents the color yellow.
Hex values: In this case, you define the value as a 6-digit hexadecimal value, with 2 digits each for the red value, 2 digits for the green ...
Read now
Unlock full access