a:hover { border-bottom: 2px; }
任何人都可以通过告诉我为什么在链接本身的长度上继续进行来帮助我吗?
body {
margin: 0;
font-family: "Georgia", "Times New Roman", "Times", "serif";
}
header {
background-color: #191919;
padding: 56px;
text-align: center;
}
div {
display: inline;
}
ul {
list-style-type: none;
display: inline;
color: #ffffff;
}
li {
display: inline;
margin-right: 28px;
width: 135px;
}
a {
text-decoration: none;
color: #ffffff;
}
a:hover {
border-bottom: 2px solid #ac9962;
font-size: 18px;
}
a:active {
border-bottom: 2px solid #ac9962;
font-size: 18px
}
<!DOCTYPE HTML>
<html>
<head>
<title>HTML</title>
<link rel="stylesheet" type="text/css" href="stylesheet2.css" />
</head>
<body>
<header>
<nav>
<ul>
<a href="www.youtube.com"><li>Menu 1</li></a>
<a href="www.youtube.com"><li>Menu 2</li></a>
<a href="www.youtube.com"><li>Menu 3</li></a>
<a href="www.youtube.com"><li>Menu 4</li></a>
<a href="www.youtube.com"><li>Menu 5</li></a>
<a href="www.youtube.com"><li>Menu 6</li></a>
<a href="www.youtube.com"><li>Menu 7</li></a>
<a href="www.youtube.com"><li>Menu 8</li></a>
</ul>
</nav>
</header>
</body>
</html>
奖金:
我也无法在菜单 5 - 菜单 8 上获取菜单 1 - 菜单 4(水平,居中)
非常感谢!