最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 正文

css selector

来源:动视网 责编:小OO 时间:2025-09-26 18:04:56
文档

css selector

ThefollowingtablesummarizesCSS 2.1selectorsyntax:PatternMeaningDescribedinsection*Matchesanyelement.UniversalselectorEMatchesanyEelement(i.e.,anelementoftypeE).TypeselectorsEFMatchesanyFelementthatisadescendantofanEelement.DescendantselectorsE>FMatc
推荐度:
导读ThefollowingtablesummarizesCSS 2.1selectorsyntax:PatternMeaningDescribedinsection*Matchesanyelement.UniversalselectorEMatchesanyEelement(i.e.,anelementoftypeE).TypeselectorsEFMatchesanyFelementthatisadescendantofanEelement.DescendantselectorsE>FMatc
The following table summarizes CSS 2.1 selector syntax:

Pattern Meaning Described in section
Matches any element. Universal selector
Matches any E element (i.e., an element of type E). Type selectors
E F Matches any F element that is a descendant of an E element. Descendant selectors
E > F Matches any F element that is a child of an element E. Child selectors
E:first-child Matches element E when E is the first child of its parent. The :first-child pseudo-class
E:link

E:visited 

Matches element E if E is the source anchor of a hyperlink of which the target is not yet visited (:link) or already visited (:visited). The link pseudo-classes
E:active

E:hover

E:focus 

Matches E during certain user actions. The dynamic pseudo-classes 

E:lang(c) Matches element of type E if it is in (human) language c (the document language specifies how language is determined). The :lang() pseudo-class 

E + F Matches any F element immediately preceded by a sibling element E. Adjacent selectors 

E[foo] Matches any E element with the "foo" attribute set (whatever the value). Attribute selectors 

E[foo="warning"] Matches any E element whose "foo" attribute value is exactly equal to "warning". Attribute selectors 

E[foo~="warning"] Matches any E element whose "foo" attribute value is a list of space-separated values, one of which is exactly equal to "warning". Attribute selectors 

E[lang|="en"] Matches any E element whose "lang" attribute has a hyphen-separated list of values beginning (from the left) with "en". Attribute selectors 

DIV.warning Language specific. (In HTML, the same as DIV[class~="warning"].) 

Class selectors
E#myid Matches any E element with ID equal to "myid". ID selectors

文档

css selector

ThefollowingtablesummarizesCSS 2.1selectorsyntax:PatternMeaningDescribedinsection*Matchesanyelement.UniversalselectorEMatchesanyEelement(i.e.,anelementoftypeE).TypeselectorsEFMatchesanyFelementthatisadescendantofanEelement.DescendantselectorsE>FMatc
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top