View Single Post
04-24-2011, 01:33 PM
#10
andrewsuzuki is offline andrewsuzuki
Status: I'm new around here
Join date: Apr 2011
Location: Connecticut, United States
Expertise: design/development
Software: Coda, Photoshop
 
Posts: 6
iTrader: 0 / 0%
 

andrewsuzuki is on a distinguished road

  Old

Yeah, by default most browsers put a margin/padding on the borders of any page. In order to remove this, simply write this at the top of your stylesheet:
Code:
* {
margin:0;
padding:0;
border:none;
}
That will "reset" the styles and remove the margin border.

Reply With Quote