<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>导航栏</title>
<style>
div{
width: 1000px;
height: 50px;
background-color:rgb(6, 73, 87);
border-radius: 20px;
text-align:center;
box-shadow: 10px 10px 10px grey;
}
li{
color: white;
font-weight:700;
font-size: 20px;
list-style-type: none;
display:inline;
line-height: 50px;
}
li:hover{
background-color: brown;
font-size:x-large;
}
</style>
</head>
<body>
<div>
<ul>
<li>游戏1</li>
<li>游戏2</li>
<li>游戏3</li>
<li>游戏4</li>
<li>游戏5</li>
<li>游戏6</li>
<li>游戏7</li>
<li>游戏8</li>
<li>游戏9</li>
</ul>
</div>
</body>
</html>