What are some of the most common mistakes made by CSS-Designers?
locked by Robert Harvey♦ Nov 26 '11 at 3:05
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
closed as not constructive by Robert Harvey♦ Nov 26 '11 at 3:04
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Not using a reset file.
|
|||||||||||||||||||||
|
|
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. |
|||||||||||||||
|
|
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. |
|||||||||||||||||||||
|
|
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 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. |
||||
|
|
|
Failing to understand the cascade and inheritance thus ending up with a lot of repeated code. |
||||
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.) |
|||||||||||||||||
|
|
Misunderstanding or not even considering selector specificity.
is more specific than
|
|||||||
|
|
not understanding what floats are, how to use them correctly, and how to clear them! |
||||
|
|
|
Not accounting for internet explorers broken box model in quirks mode. |
|||||||||||||||
|
|
Not setting width for floating Not cascading the styles. The following is not good:
This would be better
|
|||||||
|
|
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? |
|||||||||||||
|
|
Using "0px" instead of "0". Now I consider myself fairly good with CSS and yet I still do it sometimes... Example:
" |
|||||||||||||||||
|
|
||||
|
|
|
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. |
||||
|
|
|
Applying To give an example Once that kind of css is in use:
Anytime you want to use something like:
You will also need to add selectors for:
I know this may seem obvious and basic but I've seen it too many times..
The only point where your
|
||||
|
|
|
Try to use either margin or padding, rather than both, on an element. You can save yourself from some browser issues. |
|||||
|