css templates Tag Archive

A Guide For CSS Coder

By PhilWebServices, Nov. 10, 2009 in Outsourcing Philippines, Web Design And Development | 0 Comment

CSS is the most common application in styling web pages. It is written in HTML and XHTML but can also be used in any kind of XML document. It enables the separation of document content from document presentation like the layout, colors, and fonts.

For CSS coders, it is a language that is not hard to adept. Writing CSS code for large projects must comply with a specified approach in order to organize it in the right way.

Here are some guides in helping CSS coders write better and easy to manage CSS code.

Be Cautious In Using Global Reset

Global Reset can be used in removing all default margin and padding of HTML elements. This practice is not good since it can destroy a lot of good default styling. It loses their native styling that goes beyond the browser. You should pick and choose the elements you want to reset or you can use subset of CSS Resets.

Use Meaningful Names For Ids And Classes

Think first before deciding and using any classes and IDs for elements. For them to be meaningful and easy to understand in the later part.

Read more…