Click to See Complete Forum and Search --> : Website border


SyaJinGohan
02-24-2003, 01:09 PM
How do I make my site butt right up against the left and top edge of the screen? I used to know, and it was simple, but I've forgotten how and I can't find it anywhere.

gil davis
02-24-2003, 01:25 PM
<style type="text/css">
BODY {margin: 0px}
</style>

or

<body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0>

(the second one does not work on NS 4)

Stefan
02-25-2003, 03:48 AM
I would use the following to get also Opera compability

<style type="text/css">
body {margin:0; padding:0;}
</style>