这样可以吧?
<style type="text/css">
ul li{
margin:0;
padding:0;
}
ul{
width:300px;
height:200px;
margin:0 auto;
margin-top:100px;
background:#f1f2f8;
border-radius:10px;
}
.rw li{
width:50px;
height:30px;
float:left;
list-style-type:none;
line-height:30px;
text-align:center;
margin-right:20px;
}
.rw a{
display:block;
text-decoration:none;
font-family:"微软雅黑";
font-size:14px;
}
.rw a:link,a:visited{
color:#000;
}
.rw a:hover,a:active{
background:#316bff;
color:#fff;
border-radius:30px;
}
.rw h3{
padding-left:92px;
padding-top:60px;
font-weight:800;
color:red;
font-family:"微软雅黑";
}
/*在此定义相关样式,控制列表的显示形式*/
</style>
</head>
<body>
<div class="rw">
<ul><h3>课程难度</h3>
<li><a href="#">全部</a></li>
<li><a href="#">初级</a></li>
<li><a href="#">中级</a></li>
<li><a href="#">高级</a></li>
</ul>
</div>
<!--在此制作一个无序列表-->
</body>