Difference between revisions of "Selector (CSS)"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) m (Karl Jones moved page Selector to Selector (CSS)) |
Karl Jones (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | In [[Cascading Style Sheets | + | In [[Cascading Style Sheets]], a '''selector''' is a pattern matching rule that determine which style rules apply to elements in the [[Document Object Model|document tree]]. |
== Description == | == Description == | ||
Line 27: | Line 27: | ||
* [[Document Object Model]] | * [[Document Object Model]] | ||
* [[External style sheet]] | * [[External style sheet]] | ||
+ | * [[Rule (CSS)]] | ||
+ | * [[Style sheet (CSS)]] | ||
* [[Style sheet (web design)]] | * [[Style sheet (web design)]] | ||
Revision as of 10:47, 25 April 2016
In Cascading Style Sheets, a selector is a pattern matching rule that determine which style rules apply to elements in the document tree.
Description
If all conditions in the pattern are true for a certain element, the selector matches the element.
Selectors may range from simple element names to rich contextual patterns.
The case-sensitivity of document language element names in selectors depends on the document language.
For example, in HTML, element names are case-insensitive, but in XML they are case-sensitive.
Fundamental selectors
Complex selectors
See also
- Cascading Style Sheets
- Declaration (CSS)
- Document Object Model
- External style sheet
- Rule (CSS)
- Style sheet (CSS)
- Style sheet (web design)
External Links
- Selectors @ W3C