淘先锋技术网

首页 1 2 3 4 5 6 7

淘宝导航css代码怎么有?我们来看看:

/* 淘宝导航 */
.tb-nav{
height: 32px;
background-color: #f5f5f5;
border-bottom: 1px solid #e5e5e5;
line-height: 32px;
font-size: 14px;
}
.tb-nav li{
margin-right: 10px;
text-align: center;
float: left;
position: relative;
}
.tb-nav li:hover{
background-color: #e5e5e5;
}
.tb-nav li a{
text-decoration: none;
color: #333;
display: block;
padding: 0 10px;
}
.tb-nav li.current{
background-color: #fff;
}
.tb-nav li.current a{
color: #f40;
}

以上就是淘宝导航的一些基本css代码,通过这些代码,我们能够实现淘宝首页导航的样式和效果。其中包括高度、背景颜色、下边框、行高、字体大小等基本属性,以及菜单项的样式和hover、current状态的样式。