DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workkloads.

Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

  1. DZone
  2. Refcards
  3. Core CSS: Part II
refcard cover
Refcard #025

Core CSS: Part II

Understanding Selectors

Covers Core principles of CSS that will expand and strengthen your professional ability to work with CSS. Part two of three.

Download Refcard
Free PDF for Easy Reference
refcard cover

Written By

author avatar Molly Holzschlag
President, Molly.Com, Inc.
Table of Contents
► All About Selectors ► Combining Selectors ► Resources
Section 1

All About Selectors

By Molly E. Holzschlag

Just in case you've not read Core CSS: Part I, I'll briefly review the purpose of a CSS selector. A selector in a style sheet signals the browser to find matches within those markup (HTML, XHTML, XML) documents to which the style sheet is related.

There are more than a few selectors available for use (Table 1), but even intermediate and advanced CSS authors don't always have an opportunity to use some of them, largely due to crossbrowser support issues for a given selector. Core CSS: Part II will cover CSS 2.0/2.1 selectors. Where a selector is unavailable in contemporary Web browsers, a caution will be provided to alert you to any support concerns.

Version Date
Element Selects by matching element
Class Selects by matching class name
ID Selects by matching id name
Pseudo Class Selects by matching predefined pseudo class
Descendent (also known as "contextual") Selects by descendant elements
Child Selects by first-level (child) elements
Adjacent Sibling Selects by matching sibling element
Attribute Selects by matching attribute names and values
Pseudo Elements Selects by matching predefined pseudo element

Table 1. CSS Selectors Covered in this Refcard

To assist in visualizing how these selectors actually match, for each example you'll see an element, the corresponding CSS, and a document tree that visualizes what is selected within a sample document. Also provided are some use examples.

Hot Tip

There's also a universal selector, *, which when used will select every single element within a document. It's used in several hacks, including the infamous "star html" hack, which is problematic and invalid. While the universal selector is important to know about, it's probably not going to be something you use too often in real-world scenarios.

Element Selectors

Element selectors, also referred to as "type" selectors, select by matching elements. They are very broad in scope. For example, if I have a million documents with many more millions of h2 elements within them, by using an element selector I can single handedly apply styles to all of those h2 elements using one rule. Element selectors are supported in all CSS browsers and are very widely used for these reasons.

Here's a CSS rule using an element selector:

1
h2 {color: #f00; font-family: Garamond; font-size:
2
22px; font-variant: small-caps;}

In the corresponding markup document(s), all h2s are selected and the style is applied (Figure 1).

selectors

Figure 1. An HTML document tree showing that each of the h2s in the document has been selected.

Class Selectors

Class selectors are extremely useful selectors that allow authors to add a class attribute to a given element in the markup, with a custom value. Then using that value preceded by a dot, write a corresponding rule using the class name.

An example of an element with an added class attribute in the markup document would be:

3
1
<p class="warning">Any paragraph in any document on
2
any page containing this class will have the class
3
rules apply.</p>

In the CSS:

1
1
.warning {color: red; font-weight: bold;}

Figure 2 shows how this class, as written, will apply to both elements with the class attribute named "warning".

Selecting all elements with a class of warning

Figure 2. Selecting all elements with a class of warning.

Hot Tip

You can limit a class to a specific element by placing the element selector before the class: p.warning. If you were to do this, only the paragraph will take on the class styles. Any other, non-conflicting styles that exist for the element p will also be sorted and included.

Multi-Classing

An interesting and occasionally useful technique is multi-classing. This means using more than one class to get the style you're after. A good use scenario would be a portal site in which you have multiple modules that have common colors and features, but require different background images. Consider the following style rules:

3
1
.module1 {width: 200px; margin: 5px; border:
2
1px solid blue;}
3
.weather {background-image: url(images/'sunshine.jpg');}

To multiclass, I'd simply add both classes to the module element, with each name separated by a space:

1
1
<div class="module1 weather"> . . . </div>

The element will now pick up the styles of both classes. Typically, use of 2-3 class names can be helpful within context, but it's not a practice I'd recommend using without a strong sense of your site hierarchy and management.

It's also important to point out that the source order of the class names in the markup document is of no consequence. However, if there are conflicts between the classes, sort order and specificity rules in CSS will calculate which rule takes precedence.

Hot Tip

Avoid underscores and other special characters in class and ID names. The best practice currently is to use hyphenation: nav-main (not nav_main). Also, while camelCasing is extremely useful to coders, it can add a layer of extra testing because CSS requires case-matching, so case within the markup documents and any associated CSS must match for rules to apply.

ID Selectors

ID selectors are meant to identify a discrete portion of a document. This means an ID name can be used exactly one time in a given document. This is why ID's are particularly useful in CSS layout when identifying significant portions of the document, such as "content" "nav" or "site-info",because they are unique, discrete pieces of the document structure. Assuming only one document, here's a right/wrong comparison:

Right:

2
1
<div id="content"> . . . </div>
2
<div id="sub-content"> . . . </div>

Wrong:

2
1
<div id="content"> . . . </div>
2
<div id="content"> . . . </div>

In the style sheet ID selectors are written using the hash "#" (also known as an "octothorpe" for the word geeks among you) preceding a custom name.

1
1
#content {width: 500px; border: 1px solid #fff;}

Figure 3 shows how this will now select the div with the unique id attribute named "content".

Using ID selectors to identify the content area

Figure 3. Using ID selectors to identify the content area. The id name can only be used once per document, but many times within a site.

Hot Tip

While ID and Class names are in fact customized to suit your needs, it's considered best practice to avoid presentational names such as .redfont or #sidebar. What happens when the boss says "update all the red fonts on the site to be blue?" Easy enough to change the style in moments and update all those fonts, but now the markup documents are littered with class="redfont" when the actual visual result is blue! To avoid confusion of this nature, use naming that is descriptive (referred to as semantic naming) and where possible, consider creating conventions to be used site-wide.

Pseudo Class Selectors

A pseudo class selector is a set of predefined class-like selectors. Pseudo class selectors are written with a colon followed by the predefined pseudo class name. Pseudo classes can then be attached to a variety of elements in order to achieve a given result. It's likely you've used pseudo classes as much as element, ID, and class selectors, for a number of them are integral to styling links (Table 2).

Selector Purpose Example
:link Selects links that have not been visited a:link {color: blue;}
:visited Selects links that have been visited a:visited (color: violet;}
:hover Selects an element as the mouse passes over. a:hover {color: #ccc;}
:focus Selects the element that has focus a:focus {background-color: orange;}
:active Selects a link that is being activated a:active {color: red;}
:first-child Selects an element's first child div:first-child {font-style: italic;}
:lang Selects by matching human language html:lang (de) {font-size: 80%;}

Table 2. Pseudo Class Selectors

Note that :hover, :focus and :active are all referred to as "dynamic pseudo classes" because along with presentation they also allow for dynamic behavior, such as creating interesting looks for navigation, assisting with usability, and styling form controls. An example would be (Figure 4).

rc025-core_css_2_img04_fig4 (4K)

Figure 4. The form control that has focus (in this case the text input box associated with "Name") takes on the style you see here using the :focus selector on the input element.

Child Selectors

Child selectors are created by combining a parent element with the > combinator and a child element. This allows you to style only the child element or elements of the parent, without having those styles inherit down the tree. It's also a great way to reduce the use of class attributes, which help make managing sites all the more easy. Consider Figure 5.

An unordered list element (parent) with three list item child elements

Figure 5. An unordered list element (parent) with three list item child elements.

Here, we have a parent element, ul, and we want to style each of the three list items below. The CSS rule would simply be:

1
1
ul>li {border: 0; margin 0; padding: 0;}

Now all the children of any ul will have 0 border, margin and padding. Because in this example, the ul has an ID, we can use that to limit this rule only to that discrete document element:

1
1
ul#nav > li {border: 0; margin 0; padding: 0;}

Not only has this limited the rule to the ul with an id of "nav", but it has also made the rule more specific both literally and technically. Also, you'll note that there's no white space surrounding the combinator in the first example, whereas in the second, there is. Either way is acceptable according to the spec.

You can use as many children within the selector as is required. In a scenario such as Figure 6, you could write a very specific selector to select only the children of the nested ordered list item and style it with a leading zero decimal.

Tree depicting a nested ordered list within a nested unordered list with a parent unordered list

Figure 6. Tree depicting a nested ordered list within a nested unordered list with a parent unordered list. Using Child selectors, we can select children by following their ancestral path.

The resulting CSS would be:

2
1
ul#nav > li > ul > li > ol > li {list-style-type:
2
decimal-leading-zero;}
CAUTION: Child Selectors Are NOT Implemented in Internet Explorer 6.0 or Below

Descendent Selectors

Descendent selectors, as with Child selectors, begin with an element that has descendents. The combinator for descendents is a space. Since children are descendents, we can re-examine the same parent-child relationship we first did when examining child selectors (Figure 7).

rc025-core_css_2_img07_fig7 (12K)

Figure 7. Children are also descendents.

If I wanted to set a style for any descendent list items within an unordered list using a descendent selector, I can do so as follows:

1
1
ul#nav li {list-style-type: none;}

The differences is that not only the li children of the ul will be styled, but all li descendants of that ul and the ol will get the same style as well since all list items descend from the original unordered list (Figure 8).

Descendent selectors select all descendents of the defined parent element nested unordered lists.

Figure 8. Descendent selectors select all descendents of the defined parent element, in this case, nested unordered lists. Note that the list item that is child to the ordered list element will also receive the style, for it too is a descendent of the original parent list.

As with child selectors, we can create strings to reach a particular element within the tree:

2
1
ul#nav li ul li ol li {list-style-type: decimalleading-
2
zero;}

The selector will now select the very last list item in Figure 8, which is the child of the ordered list item element in the tree hierarchy. None of the other list items will take on this rule.

Fortunately, Descendent selectors are widely supported in current CSS browsers including IE 6.0 and later.

Adjacent Sibling Selectors

An Adjacent Sibling selector allows you to select an element based on its nearest sibling element. Consider the following markup:

6
1
<div>
2
<h1>Main Content Header</h1>
3
<p>First paragraph</p>
4
<p>Second paragraph</p>
5
<p>Third paragraph</p>
6
</div>

It's a common design theme to style a first paragraph somewhat differently using a larger font, or emphasized font, bringing the reader's eye to the critical introductory material. Using an Adjacent sibling selector, we can do this quite easily without using a class attribute on the first paragraph. The combinator for the Adjacent sibling selector is the plus sign, +.

1
1
h1+p {font-weight: bold;}

This selects the first adjacent paragraph element (Figure 9), with no change to any of the other siblings.

Selecting a sibling using Adjacent sibling selectors

Figure 9. Selecting a sibling using Adjacent sibling selectors.

You can use multiple sibling elements to reach a given sibling. Let's say you wanted to select not the first but the third paragraph in the example and have it display as italic.

The syntax would be:

1
1
h1+p+p+p {font-style: italic;}

Figure 10 shows the selection.

Selecting a further removed sibling using a string of adjacent siblings

Figure 10. Selecting a further removed sibling using a string of adjacent siblings.

CAUTION: Adjacent Sibling Selectors Are NOT Implemented in Internet Explorer 6.0 or Below

Attribute Selectors

Attribute selectors are a curious piece of selectors because they really are more akin to programmatic pattern matching than presentational design needs. There are four Attribute selectors that are available in CSS 2.1 (Table 3).

Attribute Selector Pattern Matching Example
[name] Selects by presence of attribute name for a given element a[title] {font-style: italic;}
[name+value] Selects by presence of the attribute name plus its value img[src='photo.jpg']
[name~="value"] Selects by the attribute name plus the presence of a specific space separated word within the attribute value img[alt~="Portland"]
[name|="value"] Selects by the attribute name plus the presence of a hyphenated word within the attribute value a[title|="top-down"]

Table 3. Attribute Selectors

To select by attribute name...

Compare the following two links:

3
1
<a href=http://molly.com/" title="go to Molly's Web
2
site">Molly.Com, Inc.</a>
3
<a href="http://molly.com/">Molly.Com, Inc.</a>

In the first link, there's a title attribute. Using the following CSS:

1
1
a[title] {font-style: italic;}

We can style any anchor elements with a title attribute present, but the style will not apply where no title attribute is present (Figure 11).

Applying style using an attribute name selector

Figure 11. Applying style using an attribute name selector.

To select by attribute name and value...

Consider the following two HTML image elements:

2
1
<img src='images/photo.jpg'>
2
<img src='images/screenshot.jpg'>

To add a specific style to the first instance, you can use the following syntax:

img[src='photo.jpg'] {border: 2px solid #000;}

The selector will match only an image element with an attribute of src='images/photo.jpg' and no other image elements will be selected (Figure 12).

Applying a border to only the photo using the complete (name+value) attribute selector

Figure 12. Applying a border to only the photo using the complete (name+value) attribute selector.

To select by presence of multiple space separators and hyphens...

Consider the following XHTML image elements:

5
1
<img src='images/vacation01.jpg' alt="Portland
2
vacation photo" />
3
<img src="images/vacation04.jpg" alt="vacation photo" />
4
<img src="images/vaction03.jpg" alt="vacation photo of
5
Portland" />

To add style to only those images that have an alt attribute (and all your images should!), and a series of space separated words that include "Portland" (note that the case must match as well) you'd use the following syntax:

1
1
img[alt~="Portland"] {border: 5px solid green;}

Figure 13 shows the results.

Applying a border to only the photos with multiple space separated words

Figure 13. Applying a border to only the photos with multiple space separated words where "Portland" appears within the image's alternative text string.

Similarly, you can select by the presence of an attribute name plus a hyphenated, specified word within the value. Consider the following HTML:

6
1
<p title="nursery-rhyme">Mary, Mary, quite contrary,
2
how does your garden grow?</p>
3
<p title="song-lyric">And she's buying a Stairway to
4
Heaven</p>
5
<p title="traditional-rhyme">Roses are red, violets
6
are blue</p>

Add this CSS rule:

1
1
p[title="rhyme"] {color: blue;}|

Both the first and third elements will take the style, whereas the middle one will not. (Figure 14).

rc025-core_css_2_img14_fig14 (16K)

Figure 14. Applying style using pattern matching. Note however that in the case of hyphen matching, order matters. The hyphenated word must be first in the string. Had we switched the third paragraph's attribute to title="rhyme-traditional" the style should not apply.

CAUTION: Attribute Selectors Are NOT Implemented in Internet Explorer 6.0 or Below

Pseudo Elements

As with pseudo classes, pseudo elements are predefined elements within CSS. There are four of which to be aware, as described in Table 4.

Pseudo Element Purpose Example
:first-line Selects only the first line of text in a given element. blockquote:first-line {font-weight: bold;}
:first-letter Selects only the first letter of text in a given element p:first-letter {font-size: 250%}
:before Used to generate content before a given element q:before {content: open-quote;}
:after Used to generate content after a given element q:after {content: close-quote}

Table 4. Pseudo Elements in CSS 2.1

First line and letter pseudo elements

Both the :first-line and :first-letter pseudo elements are typically used to add typographic features to a given set of text. The following HTML block shows what happens in the document:

9
1
<p>Let's be honest. We all make mistakes. Sometimes
2
we can be too hard on ourselves, or others, for those
3
mistakes. It makes me remember that long ago and far
4
away, someone very wise said:</p>
5
<blockquote>To err is human, to forgive divine.</
6
blockquote>
7
<p>Having both the capacity to be forgiving of others
8
and the ability to forgive yourself is part of
9
learning how to be wise.</p>

Using the decorative pseudo elements, here are the CSS examples from Table 4:

2
1
blockquote:first-letter {font-size: 250%}
2
p:first-line {font-weight: bold;}

Figure 15 shows the results.

rc025-core_css_2_img15_fig15 (43K)

Figure 15. Using first letter and line pseudo elements to apply style. Notice that in the case of :first-line, the "line" is defined as whatever amount of characters make up the first line. Because this is not always the desired result, using min-width and max-width properties to limit line length wherever possible can address this issue.

Both the first letter and line pseudo elements have good support across browsers, including IE 6.0.

Generated Content

A fascinating if controversial portion of CSS is called generated content. This is when, using the pseudo elements :before and/or :after, you as the author can actually generate text, symbols and images. What's more, you can style them on the page. Consider the quote from earlier:

2
1
<blockquote>To err is human, to forgive divine.</
2
blockquote>

Now, let's generate quote marks and style them using CSS:

5
1
blockquote {font-size: 30px; font-weight: bold;}
2
blockquote:before {content: open-quote; color: red;
3
font-size: 120px;}
4
blockquote:after {content: close-quote; color: red;
5
font-size: 120px;}

Figure 16 shows the results in Firefox.

Using pseudo elements to generate and style the quote marks

Figure 16. Using pseudo elements to generate and style the quote marks.

The caveat, and the cause of misuse and therefore controversy has to do with the fact that the content generated by pseudo elements results in pseudo content. In practical terms, this means the content never actually appears in the content layer, only the presentational layer!

In a situation where the generated content is largely decorative or practical in some sense but does not inhibit access to important data, this is fine. Take a look at the generated source by Firefox and you'll see the quotes called for do not appear in the code at all.

But what if we were to generate the message itself? In the HTML:

1
1
<blockquote></blockquote>

And in the CSS:

1
1
blockquote:after {content: "To err is human, to forgive divine" font-size: 90px;}

Figure 17 shows the generated results.

Generated results

Figure 17. You can generate actual content, but it will only appear on the presentational surface.

However, when we look at the source code, we see that the generated content does not appear within the code (Figure 18).

It does not appear within the actual body of the document

Figure 18. While we can visually see the generated content on the screen, it does not appear within the actual body of the document.

Therefore, if you are generating important content to the desktop screen that must be comprehensible, generated content is not the way to go. It can cause problems for copying, printing, reading, saving, and for anyone using Internet Explorer IE7 or earlier, simply non-existent due to complete lack of implementation for the :before and :after pseudo elements.

Section 2

Combining Selectors

Selectors can be combined, giving authors highly specific ways of working to style and manage documents.

Grouping

Selector grouping is simply placing a number of selectors that all share common properties separated by commas:

2
1
h1, h2, h3, h4, h5, h6, p, q, blockquote, td,
2
#content, .standard {color: #000; margin: 5px;}

Now all these selectors will share the declaration properties.

Hot Tip

Grouping is useful when you have a lot of shared features between elements. You can group those elements as shown, and then create more specific rules for individual elements. You might have heard of "CSS reset" or "normalization" which uses this technique.

Combining Selector Types

As you've already seen in several of this refcard's examples, you can combine selector types in order to create what some designers and developers refer to as complex selectors. Table 5 shows some examples as well as the selectors definition,and to help you practice,the selector's specificity. Read selectors from the right of the selector,it helps!

Combined Selector Meaning Specificity (CSS 2)
#content div.module > p Selects child paragraphs descending from a <div> element that has a class of "module" and is within the uniquely identified portion of the document that is identified as "content" 1,1,2
#main-nav ul li ol > li:hover Selects only the first letter of text in a given element 1,0,4 (CSS 2) 1,1,4 (CSS 2.1)
tr > td+td+td > table Any table element that is a child of a table data element that is the third sibling from a table row element. 0,0,5
#content ul > li + li a[href="http://molly. com/"] Any anchor with an href of http:// molly.com/ that is the second child sibling from an unordered list element descending from an element with an ID of content. 1,0,4 (CSS 2) 1,1,4 (CSS 2.1)

Table 5. Combining selectors to create highly specific rules

Section 3

Resources

The resources in Table 6 should help you get more information on the topics discussed in this card.

URL Reference
http://www.w3.org/TR/CSS21/cascade.html#specificity Specificity in CSS 2.1 explained
http://www.w3.org/TR/REC-CSS2/cascade.html#specificity Specificity in CSS 2.0
http://gallery.theopalgroup.com/selectoracle/ SelectOracle: Free online tool to help you calculate selector specificity
http://developer.yahoo.com/yui/reset/ Yahoo! User Interface library reset
http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ Eric Meyer's take on using reset or "normalization"

Table 6. Resources

More Core CSS Refcardz:

Core CSS: Part III-December 2008
Core CSS: Part I-Available Now!

Like This Refcard? Read More From DZone

related article thumbnail

DZone Article

CSS Bouncing Arrow
related article thumbnail

DZone Article

CSS Position: Relative vs Position Absolute
related article thumbnail

DZone Article

How to Convert XLS to XLSX in Java
related article thumbnail

DZone Article

Automatic Code Transformation With OpenRewrite
related refcard thumbnail

Free DZone Refcard

Getting Started With Low-Code Development
related refcard thumbnail

Free DZone Refcard

JavaScript Test Automation Frameworks
related refcard thumbnail

Free DZone Refcard

Salesforce Application Design
related refcard thumbnail

Free DZone Refcard

E-Commerce Development Essentials

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: