what is the CSS attribute for table postion if i want align the table to center??
Printable View
what is the CSS attribute for table postion if i want align the table to center??
Do you mean something like this?
StephanCode:<HTML>
<HEAD>
<TITLE>Center a Table</TITLE>
</HEAD>
<BODY>
<DIV align="center">
<TABLE border="1">
<TR>
<TD>
First Row, First Cell
</TD>
<TD>
First Row, Second Cell
</TD>
</TR>
<TR>
<TD>
Second Row, First Cell
</TD>
<TD>
Second Row, Second Cell
</TD>
</TR>
</TABLE>
</DIV>
</BODY>
</HTML>
no...anyway.....the problem is solved!!
What was the solution you found?Quote:
Originally Posted by kenny_oh
Code:margin-left:100px
lol, thats not centered. :pQuote:
Originally Posted by kenny_oh
You need to center the containing div (so its compatible with IE) or whatever, and then do,
margin-left:auto;
margin-right:auto;
I believe.