Css01-ul,li,a

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="'>
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
<style type="text/css">
ul{
list-style:none;
width:420px;
height:60px;
background-color:black;
}
li
{
float:left;
margin-right:30px;
margin-top:16px;
}
a{
text-decoration:none;
font-size:20px;
color:#BBBBBB;
font-family:微软雅黑;
}
</style>
</head>
<body>
<ul>
<li><a href="">博客园</a></li>
<li><a href="">新随笔</a></li>
<li><a href="">联系</a></li>
<li><a href="">订阅</a></li>
<li><a href="">管理</a></li>
</ul>
</body>
</html>
原文地址:https://www.cnblogs.com/threestars/p/10818160.html