<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>招聘列表</title>
<style>
*{
margin:0;
padding:0;
}
.box{
margin: 10px auto;
width: 300px;
height: 198px;
border: 1px solid #ccc;
padding: 15px;
background: url(images/line.jpg) repeat-x 5px center;
}
.box h2{
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
font-size: 18px;
margin-bottom: 10px;
}
.box a{
text-decoration: none;
color: #000;
font-size: 12px;
}
ul>li{
/* 去掉无序列表默认的点 */
list-style: none;
background: url(images/arr.jpg) no-repeat left center;
padding-left: 20px;
height: 30px;
/* padding-bottom: 5px; */
line-height: 30px;
border-bottom: 1px dashed #ccc;
}
</style>
</head>
<body>
<div class="box">
<h2>最新文章/New Articles</h2>
<ul>
<li><a href="#">北京招聘网页设计,平面设计,php</a></li>
<li><a href="#">体验javascript的魅力</a></li>
<li><a href="#">jquery世界来临</a></li>
<li><a href="#">网页设计师的梦想</a></li>
<li><a href="#">jquery中的链式编程是什么</a></li>
</ul>
</div>
</body>
</html>