|
Tangled web
|
|
|
Thursday, December 12, 2002 One way to position text using css and tables (thanks to Tim Rivera and the HWG): div.center {text-align: center} /* IE, NN4 */ table.center {margin: auto} /* Moz, Op, N6+ */ <div class="center"> <table class="center"> ... </table> </div> |
|