In CSS, you can use the background-color attribute to set the background color, the syntax is "background-color: color value;". Color values can be defined using color names, hexadecimal values, RGB or RGBA values, HSL or HSLA values.
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
css sets the background color
The background-color property sets the background color of the element.
The background-color property sets a solid color for the element. This color fills the element's content, padding, and border areas, extending to the outer bounds of the element's border (but not the margins). If the border has transparent parts (such as a dotted border), the background color will show through these transparent parts.
Example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
Rendering:
(Learning video sharing: css video tutorial )
How to write css color values:
1. Use the color name
Although currently There are about 184 named colors, but there are only 16 color names that are actually supported by various browsers and recommended as CSS specifications, as shown in the table below.
Table 1: Color names recommended by CSS specifications
1 2 3 4 5 6 7 |
|
It is not recommended to use color names in web pages, especially large-scale use, to avoid that some color names are not parsed by the browser, or are different Differences in how browsers interpret colors.
2. Hexadecimal color
Hexadecimal symbols #RRGGBB and #RGB (such as #ff0000). "#" followed by 6 or 3 hexadecimal characters (0-9, A-F).
This is the most commonly used color selection method, for example:
1 2 3 4 |
|
3, RGB, red-green-blue (RGB)
The color value is specified as the color of the rgb code. The function format is rgb(R,G,B), and the value can be an integer or percentage from 0-255.
1 2 3 4 |
|
Extensions: RGBA, Red-Green-Blue-Alpha (RGBa)
RGBA extends the RGB color mode to include an alpha channel, allowing the transparency of a color to be set. a represents transparency: 0=transparent; 1=opaque.
1 2 3 4 |
|
4. HSL, hue-saturation-lightness (Hue-saturation-lightness)
Hue (Hue) represents the color circle (that is, a circle representing a rainbow) ring) at an angle.
Saturation and brightness are expressed as percentages.
100% is full saturation, while 0% is a grayscale.
100% lightness is white, 0% lightness is black, and 50% lightness is "normal".
1 2 3 |
|
Extension: HSLA, Hue-Saturation-Lightness-Alpha (HSLa)
HSLa extends from the HSL color mode and includes the alpha channel, which can specify the transparency of a color. a represents transparency: 0=transparent; 1=opaque.
1 2 3 4 |
|
5, transparent
Special color value, indicating transparent color. Can be used directly as color.
For example: color:transparent Set the font color to transparent
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
For more programming-related knowledge, please visit: Introduction to Programming! !
The above is the detailed content of How to set css background color. For more information, please follow other related articles on the PHP Chinese website!