share
Stack OverflowThe biggest misunderstanding of how css works?
[0] [8] Benju
[2010-10-27 21:58:03]
[ css browser css3 hidden-features ]
[ http://stackoverflow.com/questions/4038051] [DELETED]

I have been working with css for years and continually found everybody has a different opinion of how to use it to layout components, often people give up and resort to html tables (not that this is a good thing).

So I pose the question; what is the biggest misunderstanding with how CSS works?

[+7] [2010-10-27 22:21:06] w3d [ACCEPTED]

Many people are aware of the cascade [1] but simply assume that rules defined later override earlier rules - without taking into account the selectors specificity [2]. Either getting into trouble because of specificity and attempt to compensate with a splattering of !important rules, or simply just don't make use of it.

Specificity overrides the cascade.

EDIT: An example...

p.example {
  color: red;
}
.example {
  color: blue;
}

Some might wonder what's the point of specifying the element name in the selector of the first rule. After all, the second rule is more generic and more 'useful'. But the first rule, by specifying the elements name p, has a higher specificity and overrides the 2nd rule in the cascade, regardless of the order in which they are defined. All ps with the example class will be red, not blue.

If you edit a style rule and it apparently does not change, some will assume that there must be a style defined later (in the cascade) that is overriding it, but there could also be a rule with a higher specificity defined anywhere that is overriding it.

This could also be important if you are combining stylesheets and expecting the later to override the former. Despite having the same class names, specificity could prevent this from happening.

[1] http://www.w3.org/TR/CSS21/cascade.html#cascade
[2] http://www.w3.org/TR/CSS21/cascade.html#specificity

(1) There are several specificity calculators for tricky cases. One is here suzyit.com/tools/specificity.php - Pekka
1
[+5] [2010-10-27 22:08:58] Pekka

The gravest mistake about CSS that one can make is not being disciplined when working with it. Style sheets need constant refactoring if they are not to become a horrible mess that nobody can untangle any more [1].

I'm guilty of that myself! CSS changes come usually in pieces - "can we have that a bit larger?" "can that be a bit to the right?" "That looks strange in Chrome 7" - pieces that need to be done quickly, and then forgotten about.

What would be really great is some sort of "CSS Lint" that mercilessly enforces complete definitions, clean selector paths, and comments. But I expect that is very hard to build in an universal way.

[1] http://stackoverflow.com/search?q=css+unused

2
[+4] [2010-10-27 22:25:42] Pekka

When new to CSS, one tends to produce DIV soup [1]: Using div elements, and class names for every element, for every aspect of the web site instead of semantically sensible elements.

Some of the most important elements include

A semantically wisely built HTML page will have relatively few class names in its CSS definitions, and rely on element types instead:

 ul.navmenu li h2 a {  ....... } 

A similar type of misconception is that, even if semantic elements are being used, they're still being wrapped in <div> elements instead of styling the contained elements themselves. For example:

<div id="navi">
    <ul><li>...</li></ul>
</div>

Here, the only other element in that <div> is the list, so the div is superfluous - you should just assign that ID directly to the <ul> and format that.

[1] http://www.thatwebguyblog.com/post/avoiding_div_soup
[2] http://www.w3.org/QA/Tips/Use_h1_for_Title
[3] http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.5
[4] http://www.w3.org/TR/html401/struct/lists.html#h-10.3
[5] http://www.w3.org/TR/html401/interact/forms.html#h-17.9.1
[6] http://www.w3.org/TR/html401/struct/lists.html#h-10.3
[7] http://www.w3.org/TR/html401/struct/tables.html#h-11.2.6
[8] http://www.w3.org/TR/html401/struct/tables.html#h-11.2.4.1

I wonder if this is the biggest misunderstanding of how HTML works? - stevelove
@stevelove good point, it's not entirely on the CSS side of things (but closely related). - Pekka
Agreed. - stevelove
(1) +1 I'd tend to agree. I would go so far as to say the document should first be marked up in HTML alone using the most appropriate/semantic elements available. Once the HTML is structured correctly then add the CSS. - w3d
Yes, in the beginning people often don't realize what the C in CSS means, and then the only selectors they use are classes and IDs. Browser vendors will love you for it, but it will make your CSS file bloated. - DanMan
3
[+2] [2010-10-27 22:33:11] Michael Stum

One big misunderstanding is that CSS parses from left to right, so people assume that

#main-nav > li {   }

will search for the main-nav ID and then select all li's under it.

In reality, CSS parses right to left, so it selects ALL li's and then filters the one that are children of main-nav.

Not that it matters THAT much, but on older browsers like IE6 and if there is a lot of styling going on, it may make the page feel a bit unresponsive at first.

(Source: http://css-tricks.com/efficiently-rendering-css/ and others)


Good point! And an argument in favour of using loads of classes, instead of paths consisting of element types. Arrgh. - Pekka
4
[+2] [2010-10-27 22:04:41] Matthew Vines

Most people new to css assume that if they code to spec, that they will get the results they want in all browsers. This is almost never the case, and will turn off a lot of people very early.

I really didn't enjoy using css until I understood the box model issues, and had quick answers to several of the most common cross browser issues that come up. It took a while to get there.


5
[+2] [2010-10-27 22:10:43] alexy13

A really, really long time ago I used to do this:

<html>
<head>
<style>
awesome {font-size:13px}
</style>
</head>
<body>
<awesome>This is a test</awesome>
</body>
</html>

How terrible that was!


(1) What part of it is terrible, or terribilist? :) - AlexanderJohannesen
(1) The css, and the html! I used custom tags in css and html, that weren't valid. - alexy13
6
[+1] [2010-10-29 18:09:44] takeshin

The strangest I had to learn about CSS was:

!important

Which in most programming languages reads:

not important

and in CSS means exactly the opposite ;)


I'd never considered that, heh =) - David Thomas
@David That's !important :) - takeshin
7
[0] [2010-10-27 22:24:06] stevelove

Your description talks about using CSS "to lay out components" but your question asks for the biggest misunderstanding with how CSS works. With this in mind, I would say it's the mistaken idea that selectors read from left to right.

For example, most people probably look at: div li a { color: #000; } and think the CSS engine first grabs each <div>, then grabs each <li> that descends from that <div>, and then selects all the <a> elements that descend from that.

In fact, this should be read from right to left. In this case, the engine will look at every <a> in the document, then traverse up through its ancestors until it reaches either an <li> or the document root. Assuming it finds an <li> it then traverses up through that element's ancestors until it reaches a <div> or, again, the document root.

The performance implications of inefficient CSS selectors is something most people don't think about.


8