Quote:
Originally Posted by testpie
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. 
|
The single best thing you can do to "zero out" every browser across the board
