By Harry Roberts
Harry Roberts is an independent consultant web performance engineer. He helps companies of all shapes and sizes find and fix site speed issues.
Written by Harry Roberts on CSS Wizardry.
This morning, for one reason or another, I decided to have a go at coding up a page without using any IDs or classes in my markup, and therefore none in my CSS. I’m not sure why I tried it, I guess I just did… In order to make it a fairly painless job I dove straight into the browser and coded up a simple header, footer, two column layout. View the demo and be sure to view the source.
Using a combination of more advanced selectors such as sibling and nth-of-type
you can target elements based on their position in the markup rather than a given name. The practical upshot of this is that your markup is much leaner and cleaner, removing class and ID names has a notable impact.
For a complete list please see http://www.w3.org/TR/css3-selectors/
The more advanced selectors take information about an element to determine whether it matches a certain criteria, for example body>div
will target a div
that is a direct and immediate descendant of the body
; p+p
will target a paragraph immediately preceded by a paragraph.
On this basis, you could select (for example) your main content div
by knowing that it’s the second div
in your content wrapper: body>div div:nth-of-type(2)
. Broken down we have:
body
–sets the root
>div
–the first div
inside the body (the wrapper div
)
div:nth-of-type(2)
–the second div
in the wrapper (just after the header div
).
For the time being, let’s completely disregard that Internet Explorer completely disregards these selectors…
As you can see from the above example, targeting the single, lone, unique content div
has taken two advanced selectors and 27 bytes. The selectors are fixed, the content div
will always have to be the second div
in the div
that is an immediate child of the body
. This is incredibly restrictive. Surely #content{…}
is far better than body>div div:nth-of-type(2){…}
…?
For the sake of ease, instead of rambling about pros and cons, I’ve simply drawn up a list of advantages and disadvantages:
Leaner markup.
Promotes more sensible structuring of code.
Promotes semantics.
Difficult syntaxes to remember.
Extremely restrictive–elements are styled based on their location meaning that any moving/restructuring means all styles tied to an element are lost. This leads me on to…
The CSS is no longer just describing style, it also describes structure. CSS is a styling language, not a markup one.
Arbitrary elements such as images and div
s that change depending on page content (blog posts for example) aren’t fixed enough to be styled based on their structure. This means that any variable content will require IDs and classes anyway, so you might as well us them across the board as opposed to a mix of with and without.
Difficult to understand. I wrote the CSS for the demo page and I’m having a hard enough time doing the calculations to work out what does what. Imagine inheriting that!
Jenga. As soon as you alter your markup, the structure dependent CSS will come falling down too, what might be the first child might become the second, making the second child the third and so on, creating a domino effect.
While the more advanced CSS(3) selectors are impressive, and incredibly powerful, they aren’t flexible enough to allow any large dependency upon them. That, and they’re more awkward to understand than the tried and tested ID/class ‘hooks’ we know and use. There are far too many downsides to make cleaner markup a big enough plus-side in my opinion… Oh, and Internet Explorer doesn’t seem to honour any of them, but that can’t have come as much of a surprise.
Harry Roberts is an independent consultant web performance engineer. He helps companies of all shapes and sizes find and fix site speed issues.
Hi there, I’m Harry Roberts. I am an award-winning Consultant Web Performance Engineer, designer, developer, writer, and speaker from the UK. I write, Tweet, speak, and share code about measuring and improving site-speed. You should hire me.
You can now find me on Mastodon.
I am available for hire to consult, advise, and develop with passionate product teams across the globe.
I specialise in large, product-based projects where performance, scalability, and maintainability are paramount.