<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>导航栏</title>
<style>
a{
display: inline-block;
width: 100px;
height: 30px;
background-color: gray;
text-align: center;
text-decoration: none;
color: white;
border-radius: 5px;
line-height: 30px;
}
a:hover{
background-color: orange;

}
div{
align-items: center;
}
</style>
</head>
<body>
<div>
<a href="#12">电器</a>
<a href="#12">服装</a>
<a href="#12">手机</a>
<a href="#12">生鲜</a>
<a href="#12">彩妆</a>
<a href="#12">运动</a>
</div>
</body>
</html>

HTML、CSS实现导航栏_leechoy

HTML、CSS实现导航栏_html_02