Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can I start table at position 0,0 on the page

Status
Not open for further replies.

npithia

Programmer
Aug 2, 2001
1
TZ
hey all,
I am new user. I have tired to create page which is well working on IE but not with Netscape. Iwant to start table at the top of the page which is position (0,0) but it takes a shift down on netsape which makes all other layers destorted when looking on netsape. I hope you can help me.
Thanks
Nishant
 
Code:
<html>
<body marginwidth=&quot;0&quot; marginheight=&quot;0&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot;>
<table WIDTH=100% BORDER=4>
<tr><td></td></tr>
</table>
</body>
</html>

This is cross browser for semi-recent browsers. You could also put this in some style tags.
If this is in a layer you could use this too, along with setting top/left positions to 0/0.
 
yeah, & dont forget 2 add
<table WIDTH=100% border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;> if u want table's content 2 be *close* 2 page's borders
regards, vic
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top