效果图:
非常的简单,基础,主要使div进行布局,需要考虑的是div内文字的水平垂直居中,间断的border-bottom
文字在div中水平居中一般就是text-align:center
而在垂直方向,比较常用的是行高与盒子高度相同就能使内部文字居中,不过是伪居中,还有一种居中是给盒子设置上或下的内边距padding,然后调整盒子的大小,使得padding的高度加上当前盒子的高度加内容高度等于原盒子高度
要达到间断的下横线,盒子增加一个margin,
<style>
*{
padding: 0;
margin: 0;
}
.courseList{
width: 300px;
height: auto;
border: 2px solid #ccc;
margin: 50px auto;
}
.courseList .course-title{
width: 100%;
height: 110px;
text-align: center;
background-color: #ddd;
padding-top: 70px;
}
.courseList .course-title h2{
font-size: 30px;
font-weight: bold;
color: crimson;
}
.courseList .courseItem{
margin: 0 20px;
border-bottom: 1px solid #ddd;
padding: 10px 5px 5px 5px;
line-height: 1.5em;
}
.courseList .courseItem span{
color: teal;
font-size: 16px;
}
.courseList .courseItem:last-child{
border-bottom: none;
}
.courseList .courseItem p:hover{
text-decoration: underline;
color: orange;
}
</style>
</head>
<body>
<div class="courseList">
<div class="course-title">
<h2>课程列表</h2>
</div>
<div class="courseItem">
<p>python入门与进阶</p>
<span>388元</span>
</div>
<div class="courseItem">
<p>javascript面试宝典</p>
<span>148元</span>
</div>
<div class="courseItem">
<p>安卓开发必知必会</p>
<span>228元</span>
</div>
</div>