下面我正在使用12格960px系统的提取。
<style>
body {
background: gray;
}
#container_12 {
width: 960px;
margin-left: auto;
margin-right: auto;
background: white;
overflow: hidden;
}
.column_1, .column_2, .column_3, .column_4, .column_5, .column_6, .column_7, .column_8, .column_9, .column_10, .column_11, .column_12 {
float : left;
margin-left : 10px;
margin-right : 10px;
margin-bottom: 10px;
}
.column_1 {
width : 60px;
}
.column_2 {
width : 140px;
}
.column_3 {
width : 220px;
}
.column_4 {
width : 300px;
}
.column_5 {
width : 380px;
}
.column_6 {
width : 460px;
}
.column_7 {
width : 540px;
}
.column_8 {
width : 620px;
}
.column_9 {
width : 700px;
}
.column_10 {
width : 780px;
}
.column_11 {
width : 860px;
}
.column_12 {
width : 940px;
}
</style>
<body>
<div id="container_12">
<!-- First row -->
<div class="column_1" style="height: 400px; background: red;">
</div>
<div class="column_11" style="height: 200px; background: red;">
</div>
<!-- Second row -->
<!--
This column overlaps into second row
<div class="column_1">
</div>
-->
<div class="column_5" style="height: 200px; background: green;">
</div>
<div class="column_3" style="height: 200px; background: green;">
</div>
<div class="column_3" style="height: 200px; background: green;">
</div>
</div>
</body>
输出:
http://jsfiddle.net/hnDtY/
现在让我们说如果我复制上面的两行,总共有4行。但我想给前两行一个紫色背景,最后两行给一个白色背景:
http://jsfiddle.net/QZuED/
我上面所做的问题是我必须创建一个名为“row”的新div并将其包裹在两列之外。这使得它与布局的其余部分不一致,后者没有包裹每行的div“行”。如果我在每一行上添加一个div“row”并给它一个overflow:hidden属性,那么就不可能让一列跨越两行,因为它会将第二行中的项目向下推。那么网格系统如何处理这种情况呢?
答案 0 :(得分:0)
实际上,将块嵌套在div中将迫使它们无法扩展到其余内容中。我发现最常用的答案是重复背景图像。
body {
background: gray url(web.png) repeat-x;
}
这也允许您使用渐变到其余背景中的渐变。这是你的jsfiddle tweaked to reflect this。