CSS-选择器

选择器

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Direct</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            background-color: rgb(59, 58, 58);
            color: white;
            font-family:  Helvetica Neue,Arial, sans-serif;
        }
        ul {
            /* 去列表圆点 */
            list-style: none;
            padding: 0;
        }
        li {
            display: inline-block;
            margin-left: 20px;
            border-radius: 3px;
            padding: 2px;
            background-color: gray;
        }
         /* 伪类的使用 pseudo */
        li:hover{
            background-color: indianred;
        }
        li:active{
            text-decoration: underline;
        }
        li:first-child {
            margin-left: 0;
            background-color: red;
        }
        a{
            /* 去下划线 */
            text-decoration: none;
                    }
        a:hover{
            text-decoration: underline;
        }
        .feature-box {
            display: flex;
            text-align: center;
        }
        .feature-box div{
            width: 100%;
            margin: 1px;
        }
        .feature-box.sales div {
            background-color: gray;
           
        }
        .feature-box.closeouts div {
            background-color: red;
        }
        #seldom {
            font-size: 150%;
        }

    </style>
</head>
<body>
    <header>
        <ul>
            <li><a href="#">Home</a></li>
            <li><a href="#">Locations</a></li>
            <li><a href="#">Contact</a></li>
            <li><a href="#">Directions</a></li>
        </ul>
    </header>
    <!-- 空格表示两个类名,便于做更进一步的细分 -->
    <section class="feature-box sales">
        <div>section a</div>
        <div>section b</div>
        <div>section c</div>
    </section>
    <!-- id是唯一的,除非非用不可,否则少用 -->
    <section id="seldom" class="feature-box closeouts">
        <div>section d</div>
        <div>section e</div>
    </section>
</body>
</html>

Tips

  • 伪类的使用很有趣,除了可以指定child,来特指一类中的特别元素,还可以通过hover,active来实现一些交互。
  • 多类,通过空格隔开,可以通过相同的类名设定相同的样式,在通过不同的类名设定特别的样式,减少了代码的冗余程度
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值