我使用的是使用grids.heroku.com生成的CSS網格。爲了演示目的,我創建了一個三列網格。這裏是demo。CSS網格:將塊放入空白區域
HTML
<div class="container_3 clearfix">
<div class="grid_2">
<div class="grid_2 alpha omega highlighted" style="margin-bottom: 20px;">Some content content content content content content content content content </div>
<div class="grid_1 alpha highlighted">
1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0
</div>
<div class="grid_1 omega highlighted">
0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6
</div>
</div>
<div class="grid_1 highlighted">
Content content content content content content content content content content content content content content
</div>
<div class="grid_2 target">
123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123 123
</div>
CSS
.container_3 {
background: yellow;
}
.highlighted {
background: green;
}
.target {
background: red;
}
/*grid css*/
body {
min-width: 240px;
}
.container_3 {
margin-left: auto;
margin-right: auto;
width: 240px;
}
.grid_1,
.grid_2,
.grid_3 {
display:inline;
float: left;
position: relative;
margin-left: 10px;
margin-right: 10px;
}
.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3 {
position:relative;
}
.alpha {
margin-left: 0;
}
.omega {
margin-right: 0;
}
.container_3 .grid_1 {
width:60px;
}
.container_3 .grid_2 {
width:140px;
}
.container_3 .grid_3 {
width:220px;
}
.container_3 .prefix_1 {
padding-left:80px;
}
.container_3 .prefix_2 {
padding-left:160px;
}
.container_3 .suffix_1 {
padding-right:80px;
}
.container_3 .suffix_2 {
padding-right:160px;
}
.container_3 .push_1 {
left:80px;
}
.container_3 .push_2 {
left:160px;
}
.container_3 .pull_1 {
left:-80px;
}
.container_3 .pull_2 {
left:-160px;
}
.clear {
clear: both;
display: block;
overflow: hidden;
visibility: hidden;
width: 0;
height: 0;
}
.clearfix:before,
.clearfix:after {
content: '\0020';
display: block;
overflow: hidden;
visibility: hidden;
width: 0;
height: 0;
}
.clearfix:after {
clear: both;
}
.clearfix {
zoom: 1;
}
我怎樣才能適應紅色塊進入空室在第二和第三列?
這裏是我想要達到
列可根據內容長度的任何高度的圖片。
看起來不錯。但是如果第一列的內容很少呢?就像在這[小提琴](http://jsfiddle.net/RamanChodzka/2HyqD/1/)。將「margin-left:33%;'添加到目標列並沒有真正的幫助,因爲第一列可以包含很多內容。作爲第三列(其中包含「內容內容」字),可以將任何高度的'.alignright'類添加到目標列。 –