小小标签栏(个人笔记)

<html lang="en">
<head>
    <meta charset="UTF-8">
    <title> 一个迷人的混蛋</title>
    <link rel="stylesheet" href="lesson6.css">
</head>
<body>
    <ul class="nav">
        <li class="list-item">
            <a href="#">天猫</a>
        </li>
        <li class="list-item">
            <a href="#">聚划算</a>
        </li>
        <li class="list-item">
            <a href="#">天猫超市</a>
        </li>
    </ul>
</body>
</html>

*{
    
    
    margin: 0;
    padding: 0;
    color: #424242;
    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: #ffffff;
}

猜你喜欢

转载自blog.csdn.net/weixin_51664705/article/details/109704947