<!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>
<style>
a {
display: inline-block;
padding: 10px 30px;
background: pink;
text-decoration: none;
color: grey;
}
a:hover {
background: blue;
}
</style>
</head>
<body>
<a href="#">新浪导航1</a>
<a href="#">新浪导航22</a>
<a href="#">新浪导航333</a>
<a href="#">新浪导航4444</a>
<a href="#">新浪导航55555</a>
</body>
</html>