新浪微博导航
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>新浪微博导航案例</title> <style> .nav { height: 50px; border-top: 3px solid #FF8500; /*盒子的上边*/ border-bottom: 1px solid #EDEEF0; /*盒子的下边*/ background-color: #FCFCFC; /*盒子的颜色*/ } .nav a { /*鼠标正常的状态*/ height: 50px; /*background-color: pink;*/ line-height: 50px; /*垂直居中*/ text-decoration: none; /*去除下划线*/ color: #4C4C4C; /*字体颜色*/ font-size: 12px; /*字体大小*/ display: inline-block; /*转为行内块模式*/ padding-left: 18px; /*链接之间的左边距离*/ padding-right: 18px; /* 链接之间的右边距离*/ } .nav a:hover { background-color: #EDEEF0; /*鼠标触碰时的背景颜色*/ color: #FF8400; /* 鼠标触碰时的字体颜色*/ } </style> </head> <body> <div class="nav"> <a href="#">首页</a> <a href="#">新闻客户端</a> <a href="#">设为首页</a> <a href="#">奔跑吧</a> </div> </body> </html>