Home > Web Front-end > HTML Tutorial > How to set the background color in html

How to set the background color in html

青灯夜游
Release: 2023-01-05 16:13:17
Original
64593 people have browsed it

htmlHow to set the background color: 1. Use the bgcolor attribute with the syntax "

"; 2. Use the background-color attribute with the syntax "".

How to set the background color in html

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="颜色值">
Copy after login

Example:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
	</head>
	<body bgcolor="palevioletred">
		文档背景颜色为palevioletred紫罗兰色。
	</body>
</html>
Copy after login

Rendering:

How to set the background color in html

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>
Copy after login

Rendering:

How to set the background color in html

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template