console
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
nav {
display: flex;
justify-content: space-around;
background-color: gray;
}
nav a {
color:pink;
text-decoration: none;
padding: 14px 20px;
font-size: 20px;
}
nav a:hover {
background-color: bule;
}
</style>
<title>导航栏</title>
</head>
<body>
<nav>
<a href="#">Flash特效</a>
<a href="#">JavaScript特效</a>
<a href="#">jQuery特效</a>
<a href="#">首页</a>
</nav>
</body>
</html>
ul {
margin: 0px;
padding: 0px;
}
ul li {
height: 30px;
width: 115px;
list-style: none;
float: right;
font: 0.9em Arial, Helvetica, sans-serif;
text-align: center;
}
ul li a {
color: #FAFAFA;
width: 113px;
margin: 0px;
padding: 0px 0px 0px 8px;
text-decoration: none;
display: block;
background: #808080;
line-height: 29px;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
ul li ul li {
height: 25px;
}
ul li ul li a {
background: #666;
line-height: 24px;
}
ul li a:hover {
background: #666;
border-bottom: 1px dashed #FF0000;
}
ul li ul {
visibility: hidden;
}
ul li:hover ul {
visibility: visible;
}
ul li ul li a:hover {
background: #666;
}