body设置背景颜色的问题
给body设置背景色时,即使body设置了最大宽度,若html无背景色,此时背景会填满整个页面。
测试如下
<style>
body {
max-width: 640px;
background-color: skyblue;
}
</style>
此时页面背景如下
若给html也置背景
<style>
html {
background-color: #fff;
}
body {
max-width: 640px;
background-color: skyblue;
}
</style>
背景如下,可以看到body的背景色起作用了

浙公网安备 33010602011771号