What are some of the most common mistakes made by CSS-Designers?
|
23
|
|||||||||||||||||||||
|
|
|
Not using a reset file.
|
||||||||||||||||||||
|
|
|
writing piss poor HTML |
|||
|
|
|
|
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. |
|||
|
|
|
|
Not considering your audience. |
|||
|
|
|
|
Common mistakes for CSS-designers to avoid?
notes: |
|||
|
|
|
|
Not using Firebug |
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
Forgot one, my bad
(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.) |
||||||||||||||||
|
|
|
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.
You can also group selectors with commas:
Other useful selectors include:
Unfortunately, those latter few don't work in IE6 so use for progressive enhancement only (if you support IE6). |
|||
|
|
|
|
Not setting width for floating divs. Not cascading the styles. The following is not good:
This would be better
FF0 will automatically be applied, if not interfered in some other style definitions. |
||||||
|
|
|
not understanding what floats are, how to use them correctly, and how to clear them! |
|||
|
|
|
|
Not using CSS Sprites effectively, or even at all. |
|||
|
|
|
|
Using "0px" instead of "0". Now I consider myself fairly good with CSS and yet I still do it sometimes... Example:
" |
||||||||||||||||
|
|
|
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. |
|||
|
|
|
|
Not realizing till a year into it (like me), that you can apply more than 1 class at a time.
Is valid and it will combine them all. |
||||||||||||
|
|
|
Try to use either margin or padding, rather than both, on an element. You can save yourself from some browser issues. |
||||
|
|
|
Not compressing production code with YUI's compressor |
|||
|
|
|
|
Using class names that are too specific and not generic enough. Eg.
rather than
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? |
||||||||||||
|
|
|
Failing to understand the cascade and inheritance thus ending up with a lot of repeated code. |
|||
|
|
Thinking that:
with
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. |
||||||||||||||||||||
|
|
|
Misunderstanding or not even considering selector specificity.
is more specific than
|
||||||
|
|
|
Not accounting for internet explorers broken box model in quirks mode. |
||||||||||||||
|
|
|
Using CSS hacks instead of conditional comments when writing styles for IE. |
|||
|
|
