a:hover{margin-top:-10px;}没作用
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.nav{position:absolute;right:10px;border-bottom:10px solid #6cf;border-radius:5px;}
a{color:#000;width:100px;text-align: center;padding:10px;text-decoration:none;
font-family:sans-serif;
}
a:hover{background-color: #6cf;color:#ccc;border-radius:5px;margin-top:-10px;}
</style>
</head>
<body>
<ul>
<a href="">首页</a>
<a href="">博客</a>
<a href="">主题</a>
<a href="">模板</a>
<a href="">联系</a>
</ul>
</body>
</html>