其他分享
首页 > 其他分享> > body设置背景颜色的问题

body设置背景颜色的问题

作者:互联网

给body设置背景色时,即使body设置了最大宽度,若html无背景色,此时背景会填满整个页面。

测试如下

<style>
    body {
	max-width: 640px;
	background-color: skyblue;
	}
</style>

此时页面背景如下

image-20220904101814358

若给html也置背景

<style>
    html {
        background-color: #fff;
    }
    body {
        max-width: 640px;
        background-color: skyblue;
    }
</style>

背景如下,可以看到body的背景色起作用了

image-20220904101936217

标签:body,颜色,设置,color,背景,背景色,html,background
来源: https://www.cnblogs.com/best-huan/p/16654412.html