css选择器

1.标签选择器

通过标签名进行样式修改

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>标签选择器</title>
        <style type="text/css">
            div {
                color : pink;
            }
        </style>
    </head>
    <body>
        <div>hello world</div>
    </body>
</html>

2.类选择器

通过类名,css样式表中.类名{  属性:属性值; }

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>标签选择器</title>
        <style type="text/css">
            .div {
                color : red;
            }
        </style>
    </head>
    <body>
        <div class="div">div1</div>
        <div>div2</div>
        <div class="div">div3</div>
        <div>div4</div>
    </body>
</html>

3.id选择器

通过id,id具有唯一性,css中声明id通过#id名

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>标签选择器</title>
        <style type="text/css">
            #nav {
                color : yellow;
            }
        </style>
    </head>
    <body>
        <div id="nav">div1</div>
        <div>div2</div>
        <div>div3</div>
        <div>div4</div>
    </body>
</html>

4.后代选择器

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>标签选择器</title>
        <style type="text/css">
            ul li {
                color : blue;
            }
        </style>
    </head>
    <body>
        <ul>
            <li>li1</li>
            <li>li2</li>
            <li>li3</li>
        </ul>
    </body>
</html>

注意: 父标签    后代标签 {  属性:属性值 } 

            父标签 > 后代标签 {  属性:属性值 } 

两者的区别:前者选择父标签的所有后代

后者选择父标签的直系后代标签

5.群组选择器

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>标签选择器</title>
        <style type="text/css">
            div,span,p {
                color : yellow;
            }
        </style>
    </head>
    <body>
        <div>div1</div>
        <div>div2</div>
        <span>这是span</span>
        <p>这是p段落</p>
    </body>
</html>

6.通配符选择器

* { 属性 :属性值  },通配符选择所有的标签

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>标签选择器</title>
        <style type="text/css">
            *{
                margin : 0;
                padding : 0;    
                color : blue;
            }
        </style>
    </head>
    <body>
        <div>div1</div>
        <div>div2</div>
        <span>这是span</span>
        <p>这是p段落</p>
    </body>
</html>

7.属性选择器

选择标签的属性相应的属性值

[属性=“属性值”]{ 属性 : 属性值 }

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>标签选择器</title>
        <style type="text/css">
           [type="text"] {
                background-color : red
            }
        </style>
    </head>
    <body>
       <input type="text"/>
    </body>
</html>

8.伪类选择器

通过 标签:状态{ 属性 : 属性值 }

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>标签选择器</title>
        <style type="text/css">
           a:hover {
               color : red;
            }
        </style>
    </head>
    <body>
       <a href="#">点我</a>
    </body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值