
Guide to Advanced CSS Selectors for Front-end Development
Experienced developers know that CSS is one of the most dynamic tools available for creating websites and similar applications. By using CSS, developers can alter the look of a website within a couple of minutes without having to modify the markup.
Although CSS is highly popular among skilled developers, CSS advanced selectors are almost always improperly used or aren’t used to its full potential. Instead, many developers clog their HTML with extraneous spans, divs, IDs, and classes.
To avoid this from happening, using CSS selectors is crucial to keep your markup semantic and simple. In this guide, we’ll break down all the technical aspects of using CSS selector's to target specific elements without the classification of IDs and classes.
By the end of this guide, you’ll learn how to properly use CSS selectors and keep your stylesheets and code flexible. Whether you’re new to CSS or a veteran developer, this information can save you a lot of time and result in the creation of more powerful internet platforms.
All About CSS Specificity
The topic of CSS selectors, on its own, is a complicated subject. As you can imagine,CSS are even more difficult to understand without the right context. Therefore, before diving into this topic, it’s important to first discuss how CSS specificity works.
This will help developers properly use element selectors and avoid wasting a lot of time debugging a critical CSS issue that could have been easily prevented with prior knowledge.
Developers writing CSS code should be mindful that specific selectors will outrank others in the same cascade. To put it simply, the latest selector you write will not always outrank the previous one for the same elements.
With that said, how can developers determine the “specificity” of a particular selector? The solution is more basic than what you may realize. First, remember that the specificity of a selector will always be displayed as a series of four numbers separated by commas.
This may look like: 1,3,2,1 or 0,1,3,2.
Now that you know how to calculate the specificity of CSS selectors, here are six important considerations to remember:
Initially, these concepts can be a bit difficult to understand. Below are some great examples to help build clarification:
From the selectors above, the first one will be applied to the same element because it has the higher specificity:
As you can see, it’s important to at least have a basic understanding of specificity works in CSS. Fortunately, developers can rely on a tool called Firebug to easily understand which selectors are being applied to specific elements.
Firebug accomplishes this by displaying all the selectors, ranked by their specificity when developers inspect any element.

The next step in using CSS selectors involves understanding attributes selectors. The next section will cover everything there is to know about attributes selectors.
Attribute Selectors: Everything You Need to Know
Understanding how an attributes selector works is pretty straightforward. An attributes selector allows developers to target any elements based on the attributes it has.
Particularly, you can:
In either case, attributes selector's are very beneficial.
With that said, there are six primary kinds of attributes selector's:
For clarification purposes, let’s provide an example. Let’s say that you want to change the background color of every div element on your website’s blog. To save a lot of time, you can simply use the attribute selectors discussed above to target every attribute that are posts on your blog.
Using this selector works something like “CTRL + F” to find specific words and text on a web page.

Following this trick will allow you to match all div elements that contain the word “post” to make quick changes in real time. You can also use this method to target various types of input elements.
A great example is if you want to make highlighted text a different width than other text. To accomplish this goal, you can use a basic attributes selector.

This method will allow you to quickly find, select, and modify all input elements that are related to text.
Finally, what if you want to add a different icon to various file types you’re linking to? You can use an attributes selector in this scenario to let your website visitors know then they’ll see a document, PDF, or image.
Here’s what this attributes selector will look like:

In this snapshot, all of the links represented as (a), will be targeted by an attributes selector, where the ($) in href is followed by the formats: .doc, .pdf, or .jpg.
Important Notice:
All major browsers support attribute selectors, except for Internet Explorer 6. This means if you’re planning on using attribute selectors in your stylesheet, you should ensure that IE6 users can still access a user-friendly website.
This is highly recommended for a responsiveness standpoint, as everyone deserves to access a usable version of your website.
Child Selector 101
In CSS, a direct child selectors looks like a “>” sign. This selector allows developers to target elements that are children of other elements. As you can imagine, the example that will be used here will involve headers, which have different subcategories.
If you’re editing a web page and want to align all the h2 elements that are children of a div sidebar, but not target the further descendants (grandchildren) of the element, you can use the following only child selector's:

You can also target both children and grandchildren selectors at the same time. For example, let’s say that you only want to target blockquote elements inside the divs of the body.
You can also use a class selector to achieve the same effect:

Important Notice:
Child selectors, like attribute selectors, are not supported on Internet Explorer 6. If the overall effect you are trying to achieve will improve the usability of your website, then you should consider using a class selector instead.
However, this would defeat the purpose of using first-child selector's in the first place.
Want to Streamline All This Work?
Using CSS selectors can work in a wide variety of scenarios. Chances are, you may be too busy or lack the expertise and resources to do all this work on your own.
That’s where we come in.
Contact us today to speak to a member of our team about our website development services.