是否有某種方式將一組寬度/高度的DIV,和墊沒有DIV日益增長的內容?看下面的例子。我想要所有的盒子都是140x140。如何添加填充或邊界的DIV,並保持寬度和高度?
HTML:
<div class="box1">Howdy.</div>
<div class="box2">Howdy.</div>
<div class="box3">Howdy.</div>
CSS:
.box1 {
width: 140px;
height: 140px;
background: #f66;
}
.box2 {
width: 140px;
height: 140px;
background: #66f;
padding: 1em;
}
.box3 {
width: 140px;
height: 140px;
background: #6f6;
border: 1em solid #000;
}
小提琴:http://jsfiddle.net/Wrc5S/
你舉的例子是正確的,但你沒不提[來源](http://css-tricks.com/box-sizing/)。如果你添加,我會刪除我的downvote。 – bfavaretto 2012-03-12 22:14:03
有大量的來源,在谷歌加入我用者之一,第一次一起來框中上漿 – Dampsquid 2012-03-12 22:18:35
是的,但你從那裏粘貼的例子,包括評論,所以你應該註明出處。 Downvote刪除。 – bfavaretto 2012-03-12 22:19:59