您的当前位置:首页正文

css实现导航切换的代码实例

2020-11-27 来源:我们爱旅游
本篇文章给大家带来的内容是关于css实现导航切换的代码实例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

效果图:

代码如下,复制即可使用:

<!DOCTYPE html>
<html>
<head>
 <title>css实现导航切换</title>
 <style type="text/css">
 .clothes{width:1170px;margin:0 auto;border-bottom:1px solid red;margin:30px; }
 *{padding:0;margin:0;}
 li{list-style:none;height:35px;line-height:35px;width:64px;text-align:center;}
 a{text-decoration:none;color:#000;text-align:center;font-size:12px;font-family:"微软雅黑";margin-bottom:-1px;}
 .clearfix:after{content:"/200b";height:0;display:block;visibility: hidden;clear: both;}
 ul li{float:left;border-top:1px solid #ededed;}
 a{border-left:1px solid #fff;width:64px;text-align:center;display:inline-block;height:33px;line-height:33px;margin-bottom:1px;}
 a:hover{background:#fff;border-top:2px solid red;border-left:1px solid red !important;border-right:1px solid red;
 height:34px;line-height:34px;
 }
 </style>
</head>
<body>
 <div class="clothes">
 <ul class="clearfix">
 <li style="border-left:1px solid #ededed;"><a style="border-left:1px solid #fff;" href="">大牌</a></li>
 <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>
 <li><a href="">珠宝首饰</a></li>
 <li><a href="">奢侈礼品</a></li>
 <li style="border-right:1px solid #ededed;"><a href="">奢华腕表</a></li>
 </ul>
 </div>
</body>
</html>

相关文章推荐:

怎么用css使图片自适应屏幕?

CSS中常见的水平垂直居中的实现方法有哪些?CSS中三种常见的水平垂直居中