View Single Post
  #12 (permalink)  
Old 10-27-2008, 05:30 PM
ran_dizolph's Avatar
ran_dizolph ran_dizolph is offline
WebProWorld Veteran
 
Join Date: Jul 2005
Location: Windsor, ON
Posts: 543
ran_dizolph RepRank 2
Default Re: Tableless website

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;
}
Reply With Quote