02_伪类和伪元素

文章目录

    • 01_动态伪类
      • :link, :visited, :hover, :active 应用于 a 元素
      • :hover, :active 应用于其他元素
      • :focus 使用
    • 02_目标伪类
      • :target
    • 03_语言伪类
      • :lang()
    • 04_元素状态伪类
      • :enabled, :disabled, :checked
    • 05_结构伪类
      • :nth-child()
      • :nth-last-child()
      • :nth-of-type()
      • :nth-last-of-type()
      • :first-child, :last-child, :first-of-type, :last-of-type
      • :only-child, :only-of-type
      • :root
      • :empty
    • 06_否定伪类
      • :not()
    • 07_伪元素-first-letter, first-line
    • 08_伪元素-before-after

01_动态伪类

为了便于区分, 一般伪元素用两个冒号.

:link, :visited, :hover, :active 应用于 a 元素

02_伪类和伪元素_第1张图片

02_伪类和伪元素_第2张图片

:hover, :active 应用于其他元素

02_伪类和伪元素_第3张图片

:focus 使用

02_伪类和伪元素_第4张图片
02_伪类和伪元素_第5张图片

02_目标伪类

:target

02_伪类和伪元素_第6张图片

03_语言伪类

:lang()

04_元素状态伪类

:enabled, :disabled, :checked

02_伪类和伪元素_第7张图片

05_结构伪类

:nth-child()

02_伪类和伪元素_第8张图片

02_伪类和伪元素_第9张图片

:nth-last-child()

  • 选中倒数的元素, 其余和nth-child()相同

:nth-of-type()

02_伪类和伪元素_第10张图片

:nth-last-of-type()

  • 选中倒数的元素, 其余和nth-of-type()相同

:first-child, :last-child, :first-of-type, :last-of-type

  • :first-child == nth-child(1)
  • :last-child == nth-last-child(1)
  • :first-of-type == nth-of-type(1)
  • :last-of-type == nth-last-of-type(1)

:only-child, :only-of-type

  • :only-child, 父元素中的唯一子元素
  • :only-of-type, 父元素中同类型的唯一子元素

02_伪类和伪元素_第11张图片

:root

  • :root == html , 根元素, 即 HTML 元素

:empty

  • 元素内容为空

02_伪类和伪元素_第12张图片

06_否定伪类

:not()

  • :not(x) 除 x 之外其他元素都拥有属性
  • x 可以是元素选择器, 通用选择器, 属性选择器, 类选择器, id 选择器, 伪类(除否定伪类)

07_伪元素-first-letter, first-line

02_伪类和伪元素_第13张图片

08_伪元素-before-after

02_伪类和伪元素_第14张图片

你可能感兴趣的:(前端基础)