Forum Moderators: not2easy

Message Too Old, No Replies

Centering a Table w\Styles for Mozilla

         

JMScomp

11:00 pm on Feb 6, 2006 (gmt 0)

10+ Year Member



Basically when I have a table that I want centered I use {text-align: center} to do it. This works great in IE, but not in Mozilla/Firefox. I end up adding <--align="center"> to the table tag causing it to no longer be valid. Because of the page, I can't use anything fixed (absolute positioning, etc.).

Kyle

syktek

3:18 pm on Feb 10, 2006 (gmt 0)

10+ Year Member



<html>
<head>
<title>center </title>
<style type="text/css">
html, body { text-align:center; }
#maintable { margin:auto; background-color:#000000; width:300px; height:300px; }
</style>
</head>

<body>

<table id="maintable">
<tr>
<td>&nbsp;</td>
</tr>
</table>

</body>
</html>