|
The way you set out your css file is a matter of personal choice. Some like to group like styles, like all text styles togather, list styles together, all basic layout styles together, etc, whilst some (including myself) prefer to order the css declarations in a similar order as they are declared in the html - both methods have their merits, and some different arrangement may work better for you. Just keep in mind that if two rules reference the same element, the later one in the file will overwrite the first.
If you start out by setting your reset, body and container styles first, then you will see the layout start to come together as you go . Remember to check in different browsers each step of the way - much easier to correct something as it happens rather than having to troubleshoot the site when finished.
|