# CSS 选择器参考手册
我们会定期对 W3School 的 CSS 参考手册进行浏览器测试。
## CSS3 选择器
在 CSS 中,选择器是一种模式,用于选择需要添加样式的元素。
"CSS" 列指示该属性是在哪个 CSS 版本中定义的。(CSS1、CSS2 还是 CSS3。)
| 选择器 | 例子 | 例子描述 | CSS |
| --- | --- | --- | --- |
| [._class_](/cssref/selector_class.asp "CSS .class 选择器") | .intro | 选择 class="intro" 的所有元素。 | 1 |
| [#_id_](/cssref/selector_id.asp "CSS #id 选择器") | #firstname | 选择 id="firstname" 的所有元素。 | 1 |
| [*](/cssref/selector_all.asp "CSS * 选择器") | * | 选择所有元素。 | 2 |
| [_element_](/cssref/selector_element.asp "CSS element 选择器") | p | 选择所有 <p> 元素。 | 1 |
| [_element_,_element_](/cssref/selector_element_comma.asp "CSS element,element 选择器") | div,p | 选择所有 <div> 元素和所有 <p> 元素。 | 1 |
| [_element_ _element_](/cssref/selector_element_element.asp "CSS element element 选择器") | div p | 选择 <div> 元素内部的所有 <p> 元素。 | 1 |
| [_element_>_element_](/cssref/selector_element_gt.asp "CSS element>element 选择器") | div>p | 选择父元素为 <div> 元素的所有 <p> 元素。 | 2 |
| [_element_+_element_](/cssref/selector_element_plus.asp "CSS element+element 选择器") | div+p | 选择紧接在 <div> 元素之后的所有 <p> 元素。 | 2 |
| [[_attribute_]](/cssref/selector_attribute.asp "CSS [attribute] 选择器") | [target] | 选择带有 target 属性所有元素。 | 2 |
| [[_attribute_=_value_]](/cssref/selector_attribute_value.asp "CSS [attribute=value] 选择器") | [target=_blank] | 选择 target="_blank" 的所有元素。 | 2 |
| [[_attribute_~=_value_]](/cssref/selector_attribute_value_contain.asp "CSS [attribute~=value] 选择器") | [title~=flower] | 选择 title 属性包含单词 "flower" 的所有元素。 | 2 |
| [[_attribute_|=_value_]](/cssref/selector_attribute_value_start.asp "CSS [attribute|=value] 选择器") | [lang|=en] | 选择 lang 属性值以 "en" 开头的所有元素。 | 2 |
| [:link](/cssref/selector_link.asp "CSS :link 选择器") | a:link | 选择所有未被访问的链接。 | 1 |
| [:visited](/cssref/selector_visited.asp "CSS :visited 选择器") | a:visited | 选择所有已被访问的链接。 | 1 |
| [:active](/cssref/selector_active.asp "CSS :active 选择器") | a:active | 选择活动链接。 | 1 |
| [:hover](/cssref/selector_hover.asp "CSS :hover 选择器") | a:hover | 选择鼠标指针位于其上的链接。 | 1 |
| [:focus](/cssref/selector_focus.asp "CSS :focus 选择器") | input:focus | 选择获得焦点的 input 元素。 | 2 |
| [:first-letter](/cssref/selector_first-letter.asp "CSS :first-letter 选择器") | p:first-letter | 选择每个 <p> 元素的首字母。 | 1 |
| [:first-line](/cssref/selector_first-line.asp "CSS :first-line 选择器") | p:first-line | 选择每个 <p> 元素的首行。 | 1 |
| [:first-child](/cssref/selector_first-child.asp "CSS :first-child 选择器") | p:first-child | 选择属于父元素的第一个子元素的每个 <p> 元素。 | 2 |
| [:before](/cssref/selector_before.asp "CSS :before 选择器") | p:before | 在每个 <p> 元素的内容之前插入内容。 | 2 |
| [:after](/cssref/selector_after.asp "CSS :after 选择器") | p:after | 在每个 <p> 元素的内容之后插入内容。 | 2 |
| [:lang(_language_)](/cssref/selector_lang.asp "CSS :lang(language) 选择器") | p:lang(it) | 选择带有以 "it" 开头的 lang 属性值的每个 <p> 元素。 | 2 |
| [_element1_~_element2_](/cssref/selector_gen_sibling.asp "CSS element1~element2 选择器") | p~ul | 选择前面有 <p> 元素的每个 <ul> 元素。 | 3 |
| [[_attribute_^=_value_]](/cssref/selector_attr_begin.asp "CSS [attribute^=value] 选择器") | a[src^="https"] | 选择其 src 属性值以 "https" 开头的每个 <a> 元素。 | 3 |
| [[_attribute_$=_value_]](/cssref/selector_attr_end.asp "CSS [attribute$=value] 选择器") | a[src$=".pdf"] | 选择其 src 属性以 ".pdf" 结尾的所有 <a> 元素。 | 3 |
| [[_attribute_*=_value_]](/cssref/selector_attr_contain.asp "CSS [attribute*=value] 选择器") | a[src*="abc"] | 选择其 src 属性中包含 "abc" 子串的每个 <a> 元素。 | 3 |
| [:first-of-type](/cssref/selector_first-of-type.asp "CSS :first-of-type 选择器") | p:first-of-type | 选择属于其父元素的首个 <p> 元素的每个 <p> 元素。 | 3 |
| [:last-of-type](/cssref/selector_last-of-type.asp "CSS :last-of-type 选择器") | p:last-of-type | 选择属于其父元素的最后 <p> 元素的每个 <p> 元素。 | 3 |
| [:only-of-type](/cssref/selector_only-of-type.asp "CSS :only-of-type 选择器") | p:only-of-type | 选择属于其父元素唯一的 <p> 元素的每个 <p> 元素。 | 3 |
| [:only-child](/cssref/selector_only-child.asp "CSS :only-child 选择器") | p:only-child | 选择属于其父元素的唯一子元素的每个 <p> 元素。 | 3 |
| [:nth-child(_n_)](/cssref/selector_nth-child.asp "CSS :nth-child(n) 选择器") | p:nth-child(2) | 选择属于其父元素的第二个子元素的每个 <p> 元素。 | 3 |
| [:nth-last-child(_n_)](/cssref/selector_nth-last-child.asp "CSS :nth-last-child(n) 选择器") | p:nth-last-child(2) | 同上,从最后一个子元素开始计数。 | 3 |
| [:nth-of-type(_n_)](/cssref/selector_nth-of-type.asp "CSS :nth-of-type(n) 选择器") | p:nth-of-type(2) | 选择属于其父元素第二个 <p> 元素的每个 <p> 元素。 | 3 |
| [:nth-last-of-type(_n_)](/cssref/selector_nth-last-of-type.asp "CSS :nth-last-of-type(n) 选择器") | p:nth-last-of-type(2) | 同上,但是从最后一个子元素开始计数。 | 3 |
| [:last-child](/cssref/selector_last-child.asp "CSS :last-child 选择器") | p:last-child | 选择属于其父元素最后一个子元素每个 <p> 元素。 | 3 |
| [:root](/cssref/selector_root.asp "CSS :root 选择器") | :root | 选择文档的根元素。 | 3 |
| [:empty](/cssref/selector_empty.asp "CSS :empty 选择器") | p:empty | 选择没有子元素的每个 <p> 元素(包括文本节点)。 | 3 |
| [:target](/cssref/selector_target.asp "CSS :target 选择器") | #news:target | 选择当前活动的 #news 元素。 | 3 |
| [:enabled](/cssref/selector_enabled.asp "CSS :enabled 选择器") | input:enabled | 选择每个启用的 <input> 元素。 | 3 |
| [:disabled](/cssref/selector_disabled.asp "CSS :disabled 选择器") | input:disabled | 选择每个禁用的 <input> 元素 | 3 |
| [:checked](/cssref/selector_checked.asp "CSS :checked 选择器") | input:checked | 选择每个被选中的 <input> 元素。 | 3 |
| [:not(_selector_)](/cssref/selector_not.asp "CSS :not(selector) 选择器") | :not(p) | 选择非 <p> 元素的每个元素。 | 3 |
| [::selection](/cssref/selector_selection.asp "CSS ::selection 选择器") | ::selection | 选择被用户选取的元素部分。 | 3 |
- CSS3 动画属性(Animation)
- CSS3 @keyframes 规则
- CSS3 animation 属性
- CSS3 animation-name 属性
- CSS3 animation-duration 属性
- CSS3 animation-timing-function 属性
- CSS3 animation-delay 属性
- CSS3 animation-iteration-count 属性
- CSS3 animation-direction 属性
- CSS3 animation-play-state 属性
- CSS3 animation-fill-mode 属性
- CSS 背景属性(Background)
- CSS background 属性
- CSS background-attachment 属性
- CSS background-color 属性
- CSS background-image 属性
- CSS background-position 属性
- CSS background-repeat 属性
- CSS3 background-clip 属性
- CSS3 background-origin 属性
- CSS3 background-size 属性
- CSS 边框属性(Border 和 Outline)
- CSS border 属性
- CSS border-bottom 属性
- CSS border-bottom-color 属性
- CSS border-bottom-style 属性
- CSS border-bottom-width 属性
- CSS border-color 属性
- CSS border-left 属性
- CSS border-left-color 属性
- CSS border-left-style 属性
- CSS border-left-width 属性
- CSS border-right 属性
- CSS border-right-color 属性
- CSS border-right-style 属性
- CSS border-right-width 属性
- CSS border-style 属性
- CSS border-top 属性
- CSS border-top-color 属性
- CSS border-top-style 属性
- CSS border-top-width 属性
- CSS border-width 属性
- CSS outline 属性
- CSS outline-color 属性
- CSS outline-style 属性
- CSS outline-width 属性
- CSS3 border-bottom-left-radius 属性
- CSS3 border-bottom-right-radius 属性
- CSS3 border-image 属性
- CSS3 border-image-outset 属性
- CSS3 border-image-repeat 属性
- CSS3 border-image-slice 属性
- CSS3 border-image-source 属性
- CSS3 border-image-width 属性
- CSS3 border-radius 属性
- CSS3 border-top-left-radius 属性
- CSS3 border-top-right-radius 属性
- CSS3 box-shadow 属性
- Box 属性
- CSS3 overflow-x 属性
- CSS3 overflow-y 属性
- CSS3 overflow-style 属性
- CSS3 rotation 属性
- CSS3 rotation-point 属性
- Color 属性
- CSS3 opacity 属性
- Content for Paged Media 属性
- CSS 尺寸属性(Dimension)
- CSS height 属性
- CSS max-height 属性
- CSS max-width 属性
- CSS min-height 属性
- CSS min-width 属性
- CSS width 属性
- 可伸缩框属性(Flexible Box)
- CSS3 box-align 属性
- CSS3 box-direction 属性
- CSS3 box-flex 属性
- CSS3 box-flex-group 属性
- CSS3 box-lines 属性
- CSS3 box-ordinal-group 属性
- CSS3 box-orient 属性
- CSS3 box-pack 属性
- CSS 字体属性(Font)
- CSS font 属性
- CSS font-family 属性
- CSS font-size 属性
- CSS font-size-adjust 属性
- CSS font-stretch 属性
- CSS font-style 属性
- CSS font-variant 属性
- CSS font-weight 属性
- 内容生成(Generated Content)
- CSS content 属性
- CSS counter-increment 属性
- CSS counter-reset 属性
- CSS quotes 属性
- Grid 属性
- CSS3 grid-columns 属性
- CSS3 grid-rows 属性
- Hyperlink 属性
- CSS3 target 属性
- CSS3 target-name 属性
- CSS3 target-new 属性
- CSS3 target-position 属性
- CSS 列表属性(List)
- CSS list-style 属性
- CSS list-style-image 属性
- CSS list-style-position 属性
- CSS list-style-type 属性
- CSS 外边距属性(Margin)
- CSS margin 属性
- CSS margin-bottom 属性
- CSS margin-left 属性
- CSS margin-right 属性
- CSS margin-top 属性
- Marquee 属性
- 多列属性(Multi-column)
- CSS3 column-count 属性
- CSS3 column-fill 属性
- CSS3 column-gap 属性
- CSS3 column-rule 属性
- CSS3 column-rule-color 属性
- CSS3 column-rule-style 属性
- CSS3 column-rule-width 属性
- CSS3 column-span 属性
- CSS3 column-width 属性
- CSS3 columns 属性
- CSS 内边距属性(Padding)
- CSS padding 属性
- CSS padding-bottom 属性
- CSS padding-left 属性
- CSS padding-right 属性
- CSS padding-top 属性
- Paged Media 属性
- CSS 定位属性(Positioning)
- CSS bottom 属性
- CSS clear 属性
- CSS clip 属性
- CSS cursor 属性
- CSS display 属性
- CSS float 属性
- CSS left 属性
- CSS overflow 属性
- CSS position 属性
- CSS right 属性
- CSS top 属性
- CSS vertical-align 属性
- CSS visibility 属性
- CSS z-index 属性
- CSS 打印属性(Print)
- CSS page-break-after 属性
- CSS page-break-before 属性
- CSS page-break-inside 属性
- CSS 表格属性(Table)
- CSS border-collapse 属性
- CSS border-spacing 属性
- CSS caption-side 属性
- CSS empty-cells 属性
- CSS table-layout 属性
- CSS 文本属性(Text)
- CSS color 属性
- CSS direction 属性
- CSS letter-spacing 属性
- CSS line-height 属性
- CSS text-align 属性
- CSS text-decoration 属性
- CSS text-indent 属性
- CSS text-transform 属性
- CSS unicode-bidi 属性
- CSS white-space 属性
- CSS word-spacing 属性
- CSS3 hanging-punctuation 属性
- CSS3 punctuation-trim 属性
- CSS3 text-emphasis 属性
- CSS3 text-justify 属性
- CSS3 text-outline 属性
- CSS3 text-overflow 属性
- CSS3 text-shadow 属性
- CSS3 text-wrap 属性
- CSS3 word-break 属性
- CSS3 word-wrap 属性
- 2D/3D 转换属性(Transform)
- CSS3 transform 属性
- CSS3 transform-origin 属性
- CSS3 transform-style 属性
- CSS3 perspective 属性
- CSS3 perspective-origin 属性
- CSS3 backface-visibility 属性
- 过渡属性(Transition)
- CSS3 transition 属性
- CSS3 transition-property 属性
- CSS3 transition-duration 属性
- CSS3 transition-timing-function 属性
- CSS3 transition-delay 属性
- 用户界面属性(User-interface)
- CSS3 appearance 属性
- CSS3 box-sizing 属性
- CSS3 icon 属性
- CSS3 nav-down 属性
- CSS3 nav-index 属性
- CSS3 nav-left 属性
- CSS3 nav-right 属性
- CSS3 nav-up 属性
- CSS3 outline-offset 属性
- CSS3 resize 属性
- CSS 选择器参考手册
- CSS 听觉参考手册
- CSS 网络安全字体组合
- CSS 单位
- CSS 颜色
- CSS 合法颜色值
- CSS 颜色名
- CSS 颜色十六进制值
- 免责声明