如何创建 - 博客布局
了解如何使用 CSS 创建响应式博客布局。
了解如何创建根据屏幕宽度在两列和全宽列之间变化的响应式博客布局。
调整浏览器窗口大小以查看响应效果:
如何创建博客布局
步骤 1) 添加 HTML:
实例
<div class="header">
<h2>Blog Name</h2>
</div>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h2>TITLE HEADING</h2>
<h5>Title
description, Dec 7, 2017</h5>
<div class="fakeimg"
style="height:200px;">Image</div>
<p>Some
text..</p>
</div>
<div
class="card">
<h2>TITLE HEADING</h2>
<h5>Title description, Sep 2, 2017</h5>
<div
class="fakeimg" style="height:200px;">Image</div>
<p>Some text..</p>
</div>
</div>
<div class="rightcolumn">
<div class="card">
<h2>About Me</h2>
<div class="fakeimg"
style="height:100px;">Image</div>
<p>Some
text about me in culpa qui officia deserunt mollit anim..</p>
</div>
<div class="card">
<h3>Popular Post</h3>
<div class="fakeimg">Image</div><br>
<div class="fakeimg">Image</div><br>
<div
class="fakeimg">Image</div>
</div>
<div class="card">
<h3>Follow Me</h3>
<p>Some text..</p>
</div>
</div>
</div>
<div class="footer">
<h2>Footer</h2>
</div>
步骤 2) 添加 CSS:
实例
body {
font-family: Arial;
padding: 20px;
background: #f1f1f1;
}
/* 标题/博客标题 */
.header {
padding: 30px;
font-size: 40px;
text-align: center;
background: white;
}
/* 创建两个彼此相邻浮动的不等列 */
/* 左栏 */
.leftcolumn
{
float: left;
width: 75%;
}
/* 右栏 */
.rightcolumn
{
float: left;
width: 25%;
padding-left: 20px;
}
/* Fake image */
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
/* 为文章添加卡片效果 */
.card {
background-color: white;
padding: 20px;
margin-top: 20px;
}
/* 在列之后清除浮动 */
.row:after {
content: "";
display: table;
clear:
both;
}
/* 页脚 */
.footer {
padding: 20px;
text-align: center;
background: #ddd;
margin-top: 20px;
}
/* 响应式布局 - 当屏幕宽度小于 800px 时,使两列堆叠在一起而不是彼此相邻 */
@media screen and (max-width: 800px) {
.leftcolumn,
.rightcolumn {
width: 100%;
padding: 0;
}
}
亲自试一试 »
提示:转到我们的 CSS 网站布局教程,了解有关网站布局的更多信息。
提示:转到我们的CSS 响应式网页设计教程,了解有关响应式网页设计和网格的更多信息。