最新文章网页制作:使用 CSS 盒模型设计精美布局
<!DOCTYPE html>
<html>
<head>
<title>最新文章网页制作:使用 CSS 盒模型设计精美布局</title>
<style type="text/css">
.main {
width: 372px;
height: 232px;
background-color: #efe;
padding: 10px;
font-family: '微软雅黑';
font-size: 18px;
}
.title {
font-size: 14px;
margin-bottom: 10px;
}
.line {
height: 1px;
background-color: #666666;
margin: 10px 0;
}
.content {
line-height: 30px;
margin-left: 20px;
padding-left: 15px;
border-left: 1px dashed #666666;
}
</style>
</head>
<body>
<div class="main">
<div class="title">最新文章 / New Articles</div>
<div class="line"></div>
<div class="content">问中国:经济新活力篇 治国理政 长征</div>
<div class="content">问中国:经济新活力篇 治国理政 长征</div>
<div class="content">问中国:经济新活力篇 治国理政 长征</div>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/oYwE 著作权归作者所有。请勿转载和采集!