View Single Post
Old 09-02-2007, 01:03 PM  
testpie
Mostly retired
 
testpie's Avatar
 
Industry Role:
Join Date: Apr 2006
Location: UK
Posts: 3,231
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.
__________________

Affiliates: DogFart ~ Domain parking: NameDrive ~ Traffic broker: Traffic Holder
testpie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote