了解如何使用 CSS 创建 2 列布局网格。
一些文字..
一些文字..
<div class="row">
<div class="column"></div>
<div class="column"></div>
</div>
在这个例子中,我们将创建两个相等列:
.column {
float: left;
width: 50%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
亲自试一试 »
创建两列的现代方法是使用CSS 弹性盒。但是,Internet Explorer 10 及更早版本不支持它。
如果您想使用 float 或 flex 来创建两列布局,则由您决定。但是,如果您需要支持 IE10 及以下版本,则应使用 float。
提示:要了解有关灵活框布局模块的更多信息,阅读我们的 CSS Flexbox 章节。
在这个例子中,我们将创建两个不等列:
在这个例子中,我们将创建一个响应式两列布局:
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
亲自试一试 »
提示:去我们的CSS 网站布局了解有关网站布局的更多信息的教程。
提示:去我们的CSS 响应式网页设计了解有关响应式网页设计和网格的更多信息的教程。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!