元素选择器 选择指定元素名称的 HTML 元素。 id选择器 选择具有指定 id 属性的 HTML 元素。如:“#container”选择 id 属性为 container 的元素。 类选择器 选择包含指定 class属性的 HTML 元素。如:“.box”选择 class 属性为 box 的元素。 通用选择器 选择所有HIML元素。如:“*”选择页面所有元素。 分组选择器 多种选择器按逗号间隔组合,选取对应 HTML 元素。如:“div,.box”选择所有 div 元素和 class 属性为 box 的元素。 后代选择器 多种选择器按空格间隔组合,选取对应HTHL元素的后代元素,如:“.box p”选择 class 属性为 box 的元素内的所有 p 元素。 子选择器 多种选择器按“>”符号间隔组合,选取对应HIEL元素的子元素。如:“.box > p”选择 class 属性为 box 的元素的子元素 p 元素。 相邻兄弟择器 选择对应HIL元素的相邻并且之后的元素。如:“.box +p”选择 class 属性为 box 的元素的相邻并且之后的元素 p 元素。 兄弟选择器 选择对应HI题元素的同级兄弟元素。如:“.box p”选择 class 属性为 box 的元素的相邻元素 p 元素。 伪类选择器 “:link,:visited,:hover,:active,:checked,:required,:disabled,:enabled,:read-only,:focus,:first-child,:first-ot-type,:last-child,:last-of-type,:nth-child(n),:nth-of-typen”。 伪元素选择器 “::before,::after,::first-line,::first-letter,::selection”。 属性选择器 选取具有指定属性的HIML元素。 |