Common CSS Mistakes
Written on October 27, 2009 – 8:35 am | by tihomir_wwf |1. Repetition of same code border-top:1px solid #f00; border-right:1px solid #f00; border-bottom:1px solid #f00; border-left:1px solid #f00; Each border is the same! So, it can be replace with: border:1px solid #f00; 2. Duplicate Color Codes color:#aabbcc; Write the code like this instead: color:#abc; 3. Not applying more than 1 class at a time .classA {background-color:#f00; [...]

