html – 为什么造型body元素的背景会影响整个屏幕?

html – 为什么造型body元素的背景会影响整个屏幕?,第1张

概述当您设计body元素的背景时,为什么样式会影响整个屏幕,而不仅仅是body元素本身?假设我创建了以下规则: body {width: 700px; border: 1px dotted red; background-color: blue;} 我发现边框显示为700px宽,如我所料,但背景颜色占据整个浏览器视口.为什么? 报价从 http://www.w3.org/TR/CSS21/colors 当您设计body元素的背景时,为什么样式会影响整个屏幕,而不仅仅是body元素本身?假设我创建了以下规则:
body {wIDth: 700px; border: 1px dotted red; background-color: blue;}

我发现边框显示为700px宽,如我所料,但背景颜色占据整个浏览器视口.为什么?

解决方法 报价从 http://www.w3.org/TR/CSS21/colors.html

The background of the root element becomes the background of the canvas and covers the entire canvas,anchored (for ‘background-position’) at the same point as it would be if it was painted only for the root element itself. The root element does not paint this background again.

body元素是根元素,因此,根据CSS规则的要求,它将丢失其背景样式,并将背景样式应用于包含画布(浏览器中的网页区域),因此整个屏幕是蓝色的.其他属性与元素(例如边框)保持一致.

总结

以上是内存溢出为你收集整理的html – 为什么造型body元素的背景会影响整个屏幕?全部内容,希望文章能够帮你解决html – 为什么造型body元素的背景会影响整个屏幕?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1103186.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存