Home >Web Front-end >HTML Tutorial >CSS中块级元素水平格式化_html/css_WEB-ITnose

CSS中块级元素水平格式化_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-21 09:19:351583browse

CSS中块级元素的(width+padding+marninig+border)因该等于其包含块的width。其中margin可能为负值,其他均为正值。


如果width和margin-left和margin-right都设置为auto的话,浏览器代理会默认将margin-left和margin-right设为0,将width设为包含块的width。

如果width与margin-left、margin-right其中一个为auto,而另一个margin设为固定值的话,浏览器代理会把为auto的那个margin设为0,将width设为包含块的width减去固定值的margin;而如果另一个margin不设置的话,浏览器代理会将margin-left、margin-right都设置为0,将width设置为包含块的width。

padding和border不能设置为auto。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn