View Single Post
Old 07-09-2005, 04:00   #2 (permalink)
smallbeer
I Ain't Losing Any Sleep™
 
Join Date: Apr 2003
Posts: 5,199
In ff a h1 comes with some top margin as default.
Code:
h1 { margin: 0; }

or just reset all margins and padding from the start

Code:
* { margin: 0; padding: 0; }
  Reply With Quote