vote up 17 vote down star
23

What are some of the most common mistakes made by CSS-Designers?

flag
3  
What is a "CSS developer"? – jsight Jul 27 at 22:13
10  
Community Wiki Please – Chacha102 Jul 27 at 22:19
6  
SUPPORTING IE6! – Jason Jul 27 at 23:15
4  
FWIW: non-questions - that is, posts designed to elicit responses from every reader with no criteria by which it might be considered answered - should be CW from the start to reduce the temptation for posting duplicate responses and avoid the appearance of rep-whoring. See also: meta.stackoverflow.com/questions/9782/… – Shog9 Jul 28 at 1:55
2  
I don't think Andrew has any worries about having the appearance of a rep whore. – gnovice Jul 28 at 1:56
show 5 more comments

24 Answers

vote up 21 vote down check

Not using a reset file.

"The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on."

- Eric Meyer, Meyerweb.com

link|flag
1  
Agree, resetting standard rendering should be the first step. Saves headaches later. – Grant Palin Jul 27 at 22:18
5  
It's a good idea, but I think it resets too many things. – staticsan Jul 27 at 22:47
1  
@Staticsan, modify the reset to accommodate your needs. My suggestion isn't meant to suggest only Meyer's reset. If you have a smaller, less-involved, stylesheet - use it :) – Jonathan Sampson Jul 27 at 23:52
2  
I prefer a "set" to a "reset". It's pointless to zero all margins and padding and then add them back again later. There aren't a huge amount of elements that need their margins reset (e.g. div, form, table). Often the defaults are fine anyway and browsers mostly adhere to the defaults at w3.org/TR/CSS2/sample.html – DisgruntledGoat Jul 27 at 23:59
1  
@DisgruntledGoat - Meyers' "reset" doesn't set all margins and padding to zero. You must be thinking of somebody else's reset... – Jonathan Sampson Jul 28 at 1:07
show 7 more comments
vote up 13 vote down

Using CSS hacks instead of conditional comments when writing styles for IE.

link|flag
vote up 2 vote down

Not accounting for internet explorers broken box model in quirks mode.

link|flag
9  
Even going into quirks mode in the first place is a mistake that should be avoided. – thedz Jul 27 at 22:23
1  
Some times you are stuck with it when maintaining an old crap website ... – Sam Saffron Jul 27 at 22:27
Why would you maintain such a thing? – Sneakyness Jul 28 at 0:21
4  
A paycheck from your employer. – voyager Jul 28 at 11:32
vote up 9 vote down

Misunderstanding or not even considering selector specificity.

body div a.mylinkclass { }

is more specific than

a.mylinkclass { }
link|flag
Sorry, but this is incorrect. Try it/read the specification. (0, 0, 0, 3 and 0, 0, 1, 1.) – cic Aug 2 at 12:14
Ok, fixed now, my previous comment is outdated. :-) – cic Aug 8 at 15:36
Yup. Thanks for pointing out my mistake. – Joel Potter Aug 8 at 16:23
vote up 14 vote down

Thinking that:

<div class="topMargin15"></div>

with

.topMargin15 {
    margin-top: 15px;
}

Is somehow and improvement over writing it directly into the style attribute. You are supposed to be defining what it is in the HTML, and what it looks like in the CSS.

link|flag
1  
Yep, way too many times I've seen something like: .Red { colour: #ff0000; } – apathetic Jul 27 at 22:29
1  
i can argue by saying: .NewsItem is not good either, what if I want to reuse the "style" again, do I have to create a new one with a proper name? I am going to reuse the style that is for sure, I dont want to go back to the stylesheet and create new names every time... to me, .red is more indicative of a "style" than .newsTitle – Ayyash Jul 27 at 22:54
6  
@ayyash - incorrect. something like .newsTitle is way more explanatory than .red. what if you want to change the design of your site a year from now and you want all your headlines to be yellow? now you've got news titles with .red classes that are actually yellow! – Jason Jul 27 at 23:17
1  
using such rules as a mini css framework will save a huge time in the design phase, I think. – Sepehr Lajevardi Jul 28 at 1:41
2  
@Koper: No it's not? – cic Aug 2 at 12:20
show 5 more comments
vote up 12 vote down

Failing to understand the cascade and inheritance thus ending up with a lot of repeated code.

link|flag
5  
Case in point. Cascading and inheritance are not the same thing. – toohool Jul 28 at 0:13
That's awesome. – slypete Jul 28 at 0:42
vote up 0 vote down

Using class names that are too specific and not generic enough. Eg.

.redLeftNewsHeader

rather than

.header

What happens when you decide to restyle your site with a blue theme? What happens when you want to use the class on items that are not related to news?

link|flag
Absolutely, but on some sites this is necessary. Sometimes CMS (vendors) split things into fairly small chunks and modules so that your CSS ends up looking like this. – dylanfm Jul 27 at 22:40
2  
Usually you can get around this by wrapping a container div around the HTML and giving that a class name and then use inheritance eg. <div class="news"> <div class="header"> content </div> </div> .header { color:blue; } .news .header { color:red; } – Dan Diplo Jul 27 at 22:48
1  
I'd rather too specific than too generic. It's confusing when css classes act on elements that you weren't expecting them to. – lhnz Jul 31 at 19:32
@lhnz That is down to bad practise and nothing to do with using generic names. I'd rather have a generic class called .list than one called .newslist and not be able to apply it to, say, an events list because the name is confusing. Inheritance is how you sort this out, not naming. – Dan Diplo Jul 31 at 19:56
vote up 1 vote down

Not compressing production code with YUI's compressor

link|flag
vote up -1 vote down

Try to use either margin or padding, rather than both, on an element. You can save yourself from some browser issues.

link|flag
3  
They have separate and distinct purposes (especially when it comes to backgrounds). You just have to be aware of how they affect the box model. – Gabriel Hurley Jul 28 at 1:51
vote up 20 vote down

Not realizing till a year into it (like me), that you can apply more than 1 class at a time.

.Center {text-align:center}
.Disco {background: red; text-decoration: blink;}
.Highlight { font-weight: bolder;}

    <div class="Disco Center Highlight"></div>

Is valid and it will combine them all.

link|flag
12  
On a related note, are you aware you can create a selector that looks for two or more classes using div.Disco.Center { }? – Joel Potter Jul 27 at 22:43
4  
what happens if you want to change your site design and you no longer want that element centered? now you have "disco center highlight" left aligned! hmmmm... – Jason Jul 27 at 23:19
@Joel: I know about using two classes. I did not know about the dual selector. That's cool. – Chris Lively Jul 28 at 14:51
now forget about dual selectors again, because there is always an Inevitable Exception among browsers – n1313 Sep 1 at 14:41
vote up 10 vote down

Not checking cross-browser as you develop.

It's best to catch and fix the differences before the whole site is done.

I've lost count of the "My site looks great in Firefox/IE/Safari but it's all screwed up in IE/Safari/Firefox." questions.

link|flag
vote up 0 vote down

Using "0px" instead of "0". Now I consider myself fairly good with CSS and yet I still do it sometimes...

Example: "padding: 0px" instead of "padding: 0"

link|flag
3  
This isn't really a "mistake" because it has no negative effects, they are both the same. But it is pointless to define units when the value is zero. – DisgruntledGoat Jul 28 at 0:03
3  
That's not a mistake. I often do this to differentiate between things that are in px, %, and em. – Sneakyness Jul 28 at 0:22
1  
@Sneakyness: but if the value is 0 then 0px=0%=0em=0en=0pc etc. How does adding px differentiate anything? – DisgruntledGoat Jul 28 at 16:11
1  
It wouldn't make any difference, but I think it looks neater to be explicit. – lhnz Jul 31 at 19:30
vote up 3 vote down

Not using CSS Sprites effectively, or even at all.

link|flag
vote up 6 vote down

not understanding what floats are, how to use them correctly, and how to clear them!

link|flag
vote up 1 vote down

Not setting width for floating divs.

Not cascading the styles.

The following is not good:

body {   color:"#ff0; }

h2{ color:#ff0; text-decoration:underline; }

This would be better

body {   color:"#ff0; }

h2{ text-decoration:underline; }

FF0 will automatically be applied, if not interfered in some other style definitions.

link|flag
But what if they exist in two separate sheets (body controlled by someone other than me) and you want to force #ff0 on the h2? – Joel Potter Jul 28 at 0:19
1  
In that case, we are made to force the extra style. But what I am trying to point here is - we generally tend to forget the concept of Cascading. – Thanashyam Jul 29 at 18:02
vote up 13 vote down

Ignorance of selectors.

For example, if you have a bunch of links in your footer that you want to style differently from normal links, don't put a class on each one, use a descendent selector.

// instead of this
.footerlink {
}

// use this
#footer a {
}

You can also group selectors with commas:

#header a, #footer a {
}

Other useful selectors include:

  • child selector: E>F
  • sibling selector: E+F
  • attribute selector: input[type="text"]
  • first child pseudo class: :first-child (incredibly useful for headings - you don't want the first heading in a div to have a top margin, but you do for subsequent headings)

Unfortunately, those latter few don't work in IE6 so use for progressive enhancement only (if you support IE6).

link|flag
vote up 9 vote down
  • Not understanding (or even knowing about the existence of) box model

  • Not knowing what selectors are, or how to correctly use them

  • Using words to name colors (not all browsers know all the words)

  • Using invalid styles (padding:auto for example)

  • Writing #ffffff instead of #fff. (It's 3 pairs, which can be condensed into just 3 single values)

  • Not using a # on hex colors

  • Not making sure your page won't break when used at 150%-200% zoom. Old people/Almost blind people use the internet, too.

  • Not using enough contrast or white-space

  • Not validating the markup/css

  • Make sure your page degrades nicely

  • Calling yourself a CSS designer, you aren't designing a stylesheet, you're designing a website, by implementing a stylesheet.

  • Using absolute positioning (it's going to look fucked up on somebody's computer, somewhere)

  • Not keeping the stylesheet neat and organized. Don't listen to these websites that tell you to put everything on one line, because it saves bandwidth. You should keep it the way you find it easiest to read and modify, and then compress it when you're done.

  • Not putting quotes around long font names

Forgot one, my bad

  • Caring about IE6. Every time you argue that it should be supported or that people haven't updated yet, that's their fault, maybe if everything looked fucked up they'd be more motivated to download something that wasn't a heaping PILE OF SHIT. I could write a 20 page essay on how much I hate IE6, and I'm not joking. I once wrote an ex-boss a 5 page essay on why IE is the worst browser to use. He forwarded it to all his friends, and they all use Firefox or Safari now.

(I quit after he told me he wanted his website to look like his industry's leading company's website. It was an excellent website, and even had an original music score that played when you went through the galleries. He was paying me something like $15/hr (I was in highschool) and only let me come into work 9 hours a week.)

link|flag
3  
"It was an excellent website, and even had an original music score that played when you went through the galleries" Bullet point 16; > Making websites with background music :P – BlueNovember Jul 28 at 1:33
4  
This is full of bad advice. Using absolute positioning is fine if you know how to use it (normally within relatively positioned blocks). And your reasoning applies to every single CSS rule. #ffffff vs #fff is a style issue, nothing more (I prefer consistency with the longer style). – DisgruntledGoat Jul 28 at 1:50
If you're a multimillion dollar corporation, you're probably paying somebody enough money to put music on your website in a way that it's going to add something of value to the website. Especially in an art-related industry. It's all part of the experience, mannnnnn. – Sneakyness Jul 28 at 1:50
IF YOU KNOW HOW TO USE IT. If you know how to use it, you wouldn't be making mistakes, now would you? If you are new to css, and you don't understand box model, or how to lay things out fluidly, using absolute positioning is not a viable alternative. – Sneakyness Jul 28 at 1:52
1  
Without going into too much detail, drop down menus. Typically you set each li to a relative position, then the nested ul to an absolute position, moving it across or down. Also vital any time you want to position an element in, say the bottom right of an element. – DisgruntledGoat Jul 31 at 12:49
show 2 more comments
vote up 1 vote down
  • Using units that don't work with high dpi screens
  • Not using the full width of the screen
  • Not using a print stylesheet that hides everything but the content the user wants to print
link|flag
I wouldn't class the full width thing as a mistake. Lines of text that get really long make them difficult to read. – DisgruntledGoat Jul 28 at 1:45
vote up 0 vote down
  • Trying to do anything with CSS when the browser is in quirks mode.
  • Not using Firebug's tools to see the layout of your elements and refine your CSS.
  • Making fixed-height containers and not dealing with overflow.
  • Trying to use transparent PNG-24's in IE6. (Adobe Fireworks can make transparent PNG-8's that work in IE6.)
  • Not using units at all (very bad!).
link|flag
vote up 7 vote down

Not using Firebug

link|flag
vote up -1 vote down

Common mistakes for CSS-designers to avoid?

  • not using semantic (X)HTML
  • not using semantic (X)HTML
  • did i mention not using semantic (X)HTML
  • not using valid (Strict) (X)HTML and CSS
  • not using semantic CSS class and id names
  • using non-semantic CSS class and id names
  • not using an CSS reset file(1) (preferably used in combination with a corresponding basic "set" CSS(2)(3))
  • using an outdated CSS reset file
  • forgetting to use a text alternative with logo's etc.
  • designing with IE6 as starting point.
  • ignorance of selectors
  • ignorance of the box model
  • ignorance of proper clearing when using floats

notes:

  1. http://developer.yahoo.com/yui/reset/
  2. http://developer.yahoo.com/yui/base/
  3. http://developer.yahoo.com/yui/fonts/
link|flag
vote up 0 vote down

Not considering your audience.

link|flag
vote up 0 vote down

I'd have to say using float's improperly and not understanding collumns. You can mutilate that kind of stuff really easily(personal experience.) so yah...float's and clear's.

link|flag
vote up -1 vote down

writing piss poor HTML

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.