网页背景颜色如何设置?html背景颜色设置

2020-12-06 21:15:50 html布局时候网页背景颜色如何设置?

网页背景颜色的设置使用是background

设置背景颜色为红色:background:#F00

设置网页背景颜色为黑色:body{background:#000}

对HTML网页背景设置颜色或背景图片直接对body对象标签设置CSS样式即可。

比如:

body{background:#000} —— 设置网页背景颜色为黑色。

body{background:#FFF} —— 设置网页背景颜色为白色。

 

更新