Quote:
|
One thing I would always make sure of is that in the top of your CSS file you zero EVERYTHING out. I add this little piece of code to every CSS document I have:
|
You don't need to do all that, the following does the same thing:
Code:
* {
margin:0;
padding:0;
border:0;
}