"; 2. Use the background-color attribute with the syntax "
"."/> "; 2. Use the background-color attribute with the syntax " ".">Home > Article > Web Front-end > How to set the background color in html
htmlHow to set the background color: 1. Use the bgcolor attribute with the syntax "
"; 2. Use the background-color attribute with the syntax "".
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
Method 1: Use the bgcolor attribute
The bgcolor attribute specifies the background color of the document. The syntax is as follows:
<body bgcolor="颜色值">
Example:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body bgcolor="palevioletred"> 文档背景颜色为palevioletred紫罗兰色。 </body> </html>
Rendering:
Method 2: Use background-color property
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:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body style="background-color: plum;"> 文档背景颜色为plum梅子色。 </body> </html>
Rendering:
Recommended tutorial: "html video tutorial"
The above is the detailed content of How to set the background color in html. For more information, please follow other related articles on the PHP Chinese website!