你可以使用令人难以置信的属性box-sizing:border-box; 所有现代浏览器支持,包括IE8!并在%上设置宽度和边距:
.red, .blue {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.red {
width:650px;
height:1000px;
background:red;
padding: 1% 0 0 1%; // Space top and left of red
}
.blue {
height:200px;
width: 24%;
background:blue;
display:inline-block;
float: left;
margin: 0 1% 1% 0; // Space bottom and right of each blue
}
Run Code Online (Sandbox Code Playgroud)
http://jsfiddle.net/Pik_at/L7qpgdkk/3/