淘宝部分导航栏

HTML


    

CSS

*{
    margin: 0px;
    padding: 0px;
    font-family: arial;
}
a{
    text-decoration: none;
}
.nav::after{
    content: "";
    display: block;
    clear: both;
}
.nav{
    list-style: none;
}
.nav .list-item{
    float: left;
    margin: 0 10px;
    height: 30px;
    line-height: 30px;/*使文字处在容器正中间*/
}
.nav .list-item a{
    padding: 0 5px;
    color: #f40;
    font-weight: bold;
    height: 30px;
    display: inline-block;
    border-radius: 15px;
}
.nav .list-item a:hover{
    background-color: #f40;
    color: #fff;
}

你可能感兴趣的:(淘宝部分导航栏)