Getting the best out of Cascading Style Sheets (CSS)
Cascading Style Sheets (CSS) have really changed the way we think about web page design, and they’ve certainly made creating awesome designs much simpler than it used to be. Still, for such a great technology, there’s a huge amount that web designers and developers need to learn in order to truly master the entire skill set required to earn the title of CSS Ninja. 1. Create an organized library of CSS that fits your design philosophy Every time you do something in CSS that achieves a perfect result, you should categorize it and file it away, so that when you need to do the same task again, you already have the perfect code available and ready to adapt to suit the needs of the new project. 2. Use the console to help you debug stuff The console is a really helpful sidekick if you learn how to use it properly. There’s one super JavaScript command you should never be shy about using, which is the log command. 3. Minification is not normally necessary for ordinary CSS files Mi...