<!DOCTYPE html> <html> <head> <title>导航栏</title> <style type="text/css"> *{ margin: 0px; padding: 0px; } .div1{ width: 600px; margin: 100px auto; border: 1px solid red; } .div1 ul{ list-style: none; } .div1 li{ display: inline; line-height: 50px; text-align: center; background-color: gray; } .div1 a{ display: block; width: 100px; text-decoration: none; background-color: #abd5ff; color: #fdf6e3; } .div1 a:hover{ background-color: orange; } </style> </head> <body> <div class="div1"> <ul> <li><a href="#">首页</a></li> <li><a href="#">业务介绍</a></li> <li><a href="#">联系我们</a></li> <li><a href="#">网站地图</a></li> </ul> </div> </body> </html>
习惯受伤
慕的地6079101
阿涛3652503
Samdunk