Website border

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.<!--content--><style type="text/css"><br />
BODY {margin: 0px}<br />
</style><br />
<br />
or<br />
<br />
<body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0><br />
<br />
(the second one does not work on NS 4)<!--content-->I would use the following to get also Opera compability<br />
<br />
<style type="text/css"> <br />
body {margin:0; padding:0;} <br />
</style><!--content-->
 
Back
Top