下面有更多 "亲自试一试" 示例。
这个box-sizing
属性定义了元素的宽度和高度的计算方式:是否包含填充和边框。
表中的数字指定完全支持该属性的第一个浏览器版本。
后跟 -webkit- 或 -moz- 的数字指定使用前缀的第一个版本。
Property | |||||
---|---|---|---|---|---|
box-sizing | 10.0 4.0 -webkit- |
8.0 | 29.0 2.0 -moz- |
5.1 3.2 -webkit- |
9.5 |
box-sizing: content-box|border-box|initial|inherit;
Value | Description | Demo |
---|---|---|
content-box | Default. The width and height properties (and min/max properties) includes only the content. Border and padding are not included | Demo ❯ |
border-box | The width and height properties (and min/max properties) includes content, padding and border | Demo ❯ |
initial | Sets this property to its default value. Read about initial | |
inherit | Inherits this property from its parent element. Read about inherit |
并排指定两个带边框的框:
div {
box-sizing: border-box;
width: 50%;
border: 5px solid red;
float: left;
}
亲自试一试 »
CSS教程:CSS 框大小调整
HTML DOM 参考:boxSizing 属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!