CSS3 框大小

#div1 { width: 300px; height: 100px; border: 1px solid blue; box-sizing: content-box; } #div2 { width: 300px; height: 100px; padding: 50px; border: 1px solid red; box-sizing: content-box; } #div3 { width: 300px; height: 100px; border: 1px solid blue; box-sizing: border-box; } #div4 { width: 300px; height: 100px; padding: 50px; border: 1px solid red; box-sizing: border-box; }

CSS3 box-sizing 屬性可以設(shè)置 width 和 height 屬性中包含了 padding(內(nèi)邊距) 和 border(邊框)。


瀏覽器支持

表格中的數(shù)字表示支持該方法的第一個瀏覽器的版本號。

緊跟在數(shù)字后面的 -webkit- 或 -moz- 為指定瀏覽器的前綴。

屬性
box-sizing 10.0
4.0 -webkit-
8.0 29.0
2.0 -moz-
5.1
3.1 -webkit-
9.5

不使用 CSS3 box-sizing 屬性

默認情況下,元素的寬度與高端計算方式如下:

width(寬) + padding(內(nèi)邊距) + border(邊框) = 元素實際寬度

height(高) + padding(內(nèi)邊距) + border(邊框) = 元素實際高度

這就意味著我們在設(shè)置元素的 width/height 時,元素真實展示的高度與寬度會更大(因為元素的邊框與內(nèi)邊距也會計算在 width/height 中)。

這個是個較小的框 (width 為 300px ,height 為 100px)。

這個是個較大的框 (width 為 300px ,height 為 100px)。

以上兩個 <div> 元素雖然寬度與高度設(shè)置一樣,但真實展示的大小不一致,因為 div2 指定了內(nèi)邊距:

實例

.div1 {
    width: 300px;
    height: 100px;
    border: 1px solid blue;
}

.div2 {
    width: 300px;
    height: 100px;
    padding: 50px;
    border: 1px solid red;
}

嘗試一下 ?

使用這種方式如果想要獲得較小的那個框且包含內(nèi)邊距,就不得不考慮到邊框和內(nèi)邊距的寬度。

CSS3 的 box-sizing 屬性很好的解決了這個問題。


使用 CSS3 box-sizing 屬性

CSS3 box-sizing 屬性在一個元素的 width 和 height 中包含 padding(內(nèi)邊距) 和 border(邊框)。

如果在元素上設(shè)置了 box-sizing: border-box; 則 padding(內(nèi)邊距) 和 border(邊框) 也包含在 width 和 height 中:

兩個 div 現(xiàn)在是一樣大小的!

W3Cschool教程!

以下是兩個 <div> 元素添加 box-sizing: border-box; 屬性的簡單實例。

實例

.div1 {
    width: 300px;
    height: 100px;
    border: 1px solid blue;
    box-sizing: border-box;
}

.div2 {
    width: 300px;
    height: 100px;
    padding: 50px;
    border: 1px solid red;
    box-sizing: border-box;
}

嘗試一下 ?

從結(jié)果上看 box-sizing: border-box; 效果更好,也正是很多開發(fā)人員需要的效果。

以下代碼可以讓所有元素以更直觀的方式展示大小。很多瀏覽器已經(jīng)支持 box-sizing: border-box; (但是并非所有 - 這就是為什么 input 和 text 元素設(shè)置了 width: 100%; 后的寬度卻不一樣)。

所有元素使用 box-sizing 是比較推薦的:

實例

* {
    box-sizing: border-box;
}

嘗試一下 ?