zoukankan      html  css  js  c++  java
  • 1.选择器

    1.通配选择符: *

    2.元素选择符: body、h1、p

    3.群组选择符: h1,h2,h3,p(“,”分隔)

    4.关系选择符:    E F    E>F              (css1/2/2/3 都作用于F元素)

              E+F     E~F

    5.id 及 class选择器(id:锚点用“name”)

    6.伪类选择器:  

    E:link E:visited E:hover E:active 爱恨原则”(LoVe/HAte)
    E:focus E:lang(zh-cn) E:not(s) E:root  
    E:first-child E:last-child E:nth-child(n) E:nth-last-child(n) E:only-child
    E:first-of-type E:last-of-type E:nth-of-type(n) E:nth-last-of-type(n) E:only-of-type
    E:empty E:checked E:enabled E:disabled E:target

                 

    7.属性选择符:

            E[att]      E[att=”val”]      E[att~=”val”]    E[att|=”val”]

            E[att^=”val”]   E[att$=”val”]    E[att*=”val”]     

    8.伪对象选择符:

    E:first-letter/E::first-letter E:before/E::before E::placeholder
    E:first-line/E::first-line E:after/E::after
    E::selection

    9.深入选择器

    /deep/ .child-class {} (>>> 、deep、::v-deep)         文档

    以妓会友

  • 相关阅读:
    正则表达式(验证账号密码邮箱身份证)
    JS Fetch
    事件流动
    JS DOM和BOM
    CSS的定位
    For each...in / For...in / For...of 的解释和例子
    CSS的gridlayout
    CSS position属性
    CSS的颜色
    twelfth week
  • 原文地址:https://www.cnblogs.com/lgyong/p/8617055.html
Copyright © 2011-2022 走看看