Forum Moderators: not2easy
body {
margin: 0; /* sets all to 0 */
padding: 0; /* think Opera sets padding on body */
}
Or if you need different margins/padding on different sides use the shorthand like this:
body {
margin: 0 10px 0 20px; /* top, right, bottom, left */
}
Nick