html 和 body 的 width 和 height 默认为 100%,为整个视窗的高度和宽度。
html 的 width:100% 占据整个视窗,而 body的width:100%是根据html的 width*100% 计算的。
The percentage is calculated with respect to the height of the generated box's containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), and this element is not absolutely positioned, the value computes to 'auto'. A percentage height on the root element is relative to the initial containing block.
html
和body
的 width 和 height 默认为 100%,为整个视窗的高度和宽度。html
的width:100%
占据整个视窗,而body
的width:100%
是根据html
的 width*100% 计算的。参考: height and width on html and body elements
想要
body
在各分辨率下均包裹#wrapper
可设置body {min-width:1200px}
今天发现一篇好文章 html与body的一些研究与理解 又发现一片:DIV 高度100%