Home › Forums › CSS › [Solved] How can I get rid of space on right/left of footer? › Re: [Solved] How can I get rid of space on right/left of footer?
June 11, 2010 at 4:49 am
#77551
Participant
When you build a site, should always start your css with:
Code:
* { margin:0; padding:0;}
It is an automatic reset that zeros out all the default padding and margin for all elements. Your body gives an automatic margin of 10 pixels around the sides and bottom, it’s pushing your footer in. This will fix it for ya.