CSS水平导航栏

时间:2023-03-08 18:01:41
 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" content="This is a meta data" name="dengyexun">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="home.html">
<style>
ul{
list-style-type: none;
margin: 10px;
padding: 0px;
}
a:link, a:visited{
{# display: block;#}
font-weight: bold;
color: white;
background-color: #98bf21;
text-align: center;
width: 120px;
padding: 10px;
text-transform: uppercase;
}
a:hover, a:active{
background-color: orangered;
}
li{
display: inline;
}
</style>
</head>
<body>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="home.html">News</a></li>
<li><a href="home.html">Contact</a></li>
<li><a href="home.html">About</a></li>
</ul> </body>
</html>

显示结果

CSS水平导航栏