下面是编程之家 jb51.cc 通过网络收集整理的代码片段。@H_502_1@
编程之家小编现在分享给大家,也给大家做个参考。@H_502_1@
<!DOCTYPE html> <html> <head> <Meta charset="UTF-8"> <title>NavgationLists</title> <style> body,nav,ul,li,a { margin: 0; padding: 0; } #nav { width: 300px; height: 35px; background-color: #CCC; margin: 0 auto; } #nav ul { list-style: none; } #nav ul li { display: block; float: left; height: 35px; line-height: 35px; text-align: center; } #nav ul li a { display: block; float: left; height: 35px; text-decoration: none; padding: 0 10px; } #nav ul li a:hover { color: #fff; background-color: #000; } </style> </head> <body> <nav id="nav"> <ul> <li><a href="">Home</a></li> <li><a href="">About</a></li> <li><a href="">Services</a></li> <li><a href="">Contact</a></li> </ul> </nav> </body> </html>
以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。@H_502_1@