02_伪类和伪元素

01_动态伪类

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

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

02_伪类和伪元素

02_伪类和伪元素

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

02_伪类和伪元素

:focus 使用

02_伪类和伪元素
02_伪类和伪元素

02_目标伪类

:target

02_伪类和伪元素

03_语言伪类

:lang()

04_元素状态伪类

:enabled, :disabled, :checked

02_伪类和伪元素

05_结构伪类

:nth-child()

02_伪类和伪元素

02_伪类和伪元素

:nth-last-child()

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

:nth-of-type()

02_伪类和伪元素

: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_伪类和伪元素

:root

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

:empty

  • 元素内容为空

02_伪类和伪元素

06_否定伪类

:not()

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

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

02_伪类和伪元素

08_伪元素-before-after

02_伪类和伪元素