image problem

liunx

Guest
<!-- m --><a class="postlink" href="http://68.201.25.58/beta/default.html">http://68.201.25.58/beta/default.html</a><!-- m --><br />
<br />
ok click the eneter button<br />
<br />
<br />
why is there that buffer roon between the image and the browser how can i get rid of that or make it so the pic is lined up with the edges?<br />
<br />
<br />
<br />
<br />
...im not really new to web design ive just never come across when ive needed this<!--content-->When a <body> tag is declared, the browser defaults to a minimum margin.<br />
<br />
You can replace this either with Stylesheets or the margin attributes in the tag:<br />
<br />
<br />
<body leftmargin='0px' topmargin='0px' rightmargin='0px' bottommargin='0px'><br />
<br />
<br />
or:<br />
<br />
<body style='margin : 0px'> (* does all margins *)<br />
<br />
<body style='margin : 0px 0px 0px 0px'> (* allows you to specify seperate margins *)<!--content-->awesome thank you alot:D<br />
<br />
cheers<!--content-->
 
Back
Top