<!DOCTYPE html><html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/yiji.css"/>
</head>
<body>
<p id="nav">
<ul>
<li><a href="">首页</a></li>
<li><a href="">首页</a></li>
<li><a href="">首页</a></li>
<li><a href="">首页</a></li>
<li><a href="">首页</a></li>
</ul>
</p>
</body></html> 第二步设置CSS样式: 1.设置nav的属性 展示效果如下所示: #nav{
width: 500px;
height: 50px;
border: 1px solid red;
}
2.清除ff6d136ddc5fdfeffaf53ff6ee95f185标签前面自带的点
#nav ul{ list-style: none; }
3.设置ff6d136ddc5fdfeffaf53ff6ee95f185下包含的3499910bf9dac5ae3c52d5ede7383485标签的属性
#nav ul li a{ width: 98px; height: 50px; float: left; border: 1px solid red; text-align: center; line-height: 50px; text-decoration: none; }
4.设置鼠标滑过效果
#nav ul li a:hover{ background-color: #ABCDEF; }
最终效果:
完整HTML代码部分:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" href="css/yiji.css"/> </head> <body> <p id="nav"> <ul> <li><a href="">首页</a></li> <li><a href="">首页</a></li> <li><a href="">首页</a></li> <li><a href="">首页</a></li> <li><a href="">首页</a></li> </ul> </p> </body> </html>
完成CSS样式代码部分:
*{ margin: 0; padding: 0; } #nav{ width: 500px; height: 50px; border: 1px solid red; margin: 30px; } #nav ul{ list-style: none; } #nav ul li a{ width: 98px; height: 50px; float: left; border: 1px solid red; text-align: center; line-height: 50px; text-decoration: none; } #nav ul li a:hover{ background-color: #ABCDEF; }
以上是如何通过html制作导航条的详细内容。更多信息请关注PHP中文网其他相关文章!