<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
/*清除默认样式*/
*{
margin: 0;
padding: 0;
}
/*统一页面中字体*/
body{
font: 12px/1 宋体;
}
/*设置outer大小*/
.outer{
width: 300px;
/* height: 473px;
background-color: #BBFFAA; */
/*设置居中*/
margin: 50px auto;
}
/*
设置title边框
*/
.title{
/*设置上边框*/
border-top:2px solid #019e8b;
/*设置高度*/
height: 36px;
/*背景颜色*/
background-color: #f5f5f5;
/*设置title行高*/
line-height: 36px;
/*设置内边距(没有设置宽度不会影响可见框大小)*/
padding: 0 22px 0 16px;
}
.title a{
float: right;
color: #FF0000;
}
.title h3{
float: left;
font: 16px/36px "微软雅黑";
}
/*设置内容*/
.content{
border: 1px solid #deddd9;
}
/*设置内容中的超链接*/
.content a{
color: black;
/*去除下划线*/
text-decoration: none;
/* IE6中浮动元素上方如果是内联元素也会浮动不上去
float: left; */
/*设置字体大小*/
font-size: 12px;
/*设置内边距*/
padding: 0 21px 0 20px;
}
/*为a添加伪类*/
.content a:hover{
color: red;
text-decoration: underline;
}
/*设置标题外边距*/
.content h3{
margin-top: 14px;
margin-bottom: 16px;
}
/* .content li{
clear: left;
} */
/*设置右侧a样式*/
.content .righ{
float: right;
}
/*设置ul样式*/
.content ul{
list-style: none;
/*统一为ul设置边框*/
border-bottom:1px dashed #DEDDD9 ;
}
/*取消最后一个ul的边框*/
.content .no{
border: none;
}
.content .red{
color: red;
font-weight: bold;
}
/*设置内容中的li*/
.content li{
margin-bottom:15px;
}
</style>
</head>
<body>
<!-- 创建外层div -->
<div class="outer">
<!-- 开班信息头部 -->
<div class="title">
<h3>近期开班</h3>
<a href="#">16年面授开班计划</a>
</div>
<!-- 主要内容 -->
<div class="content">
<h3><a href="#">JavaEE+云计算-全程就业班</a></h3>
<ul>
<li>
<a href="#" class="righ"><span class="red">预约报名</span></a>
<a href="#">开班时间:<span class="red">2016-04-27</span></a>
</li>
<li>
<a href="#" class="righ"><span class="red">无座:名额爆满</span></a>
<a href="#">开班时间:<span class="red">2016-04-07</span></a>
</li>
<li>
<a href="#" class="righ"><span>开班盛况</span></a>
<a href="#">开班时间:<span>2016-03-15</span></a>
</li>
<li>
<a href="#" class="righ"><span>开班盛况</span></a>
<a href="#">开班时间:<span>2016-02-25</span></a>
</li>
<li>
<a href="#" class="righ"><span>开班盛况</span></a>
<a href="#">开班时间:<span>2015-12-06</span></a>
</li>
</ul>
<h3><a href="#">Android+人工智能-全程就业班</a></h3>
<ul>
<li>
<a href="#" class="righ"><span class="red">预约报名</span></a>
<a href="#">开班时间:<span class="red">2016-04-10</span></a>
</li>
<li>
<a href="#" class="righ"><span>开班盛况</span></a>
<a href="#">开班时间:<span>2016-03-17</span></a>
</li>
<li>
<a href="#" class="righ"><span>开班盛况</span></a>
<a href="#">开班时间:<span>2016-02-20</span></a>
</li>
<li>
<a href="#" class="righ"><span>开班盛况</span></a>
<a href="#">开班时间:<span>2015-12-23</span></a>
</li>
</ul>
<h3><a href="#">前端+HTML5-全程就业班</a></h3>
<ul class="no">
<li>
<a href="#" class="righ"><span class="red">预约报名</span></a>
<a href="#">开班时间:<span class="red">2016-05-10</span></a>
</li>
<li>
<a href="#" class="righ"><span>开班盛况</span></a>
<a href="#">开班时间:<span>2016-03-16</span></a>
</li>
</ul>
</div>
</div>
</body>
</html>