<!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>Document</title>
<link rel="stylesheet" href="./css/reset.css">
<style>
.nav{
/* 设置宽度和高度 */
width: 1210px;
height: 48px;
/* float: left; */
margin: 100px auto;
background-color: rgb(223, 219, 219);
}
.nav li {
float: left;
line-height: 48px;
/* margin-left: 20px;
padding-left: 45px; */
/* color: rgb(197, 195, 195); */
}
.nav a{
display: block;
color: grey;
text-decoration: none;
/* font-weight: bold; */
font-size: 18px;
padding: 0 43px;
}
.nav a:hover{
background-color: #3f3f3f;
color: #e8e7e3; ;
}
</style>
</head>
<body>
<ul class="nav">
<li><a href="">HTML/CSS</a></li>
<li><a href="">Browser Side</a></li>
<li><a href="">Server Side</a></li>
<li><a href="">Programming</a></li>
<li><a href="">XML</a></li>
<li><a href="">Web Building</a></li>
<li><a href="">Reference</a></li>
</ul>
</body>
</html>