View Single Post
Old 09-02-2007, 03:20 PM  
Tempest
Too lazy to set a custom title
 
Industry Role:
Join Date: May 2004
Location: West Coast, Canada.
Posts: 10,217
Quote:
Originally Posted by testpie View Post
Here's a quick tip:

Instead of wrangling with every element and having to put margin:0;padding:0; use this at the top of your CSS:
Code:
* {
 margin:0;
 padding:0;
}
This works by using the wildcard match to make every element on the page have no padding and no margin without having to constantly redefine these.

Enjoy.
Nice one.. didn't know about *.. there's some special things like that that I'm not aware of.
Tempest is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote