Layers in a table

boyleswebdesign

New Member
Hello, is it possible to make a table thats 1x1 and 800 px wide and put layers in it, so that it would always be centered? Is there a way to do this? thanks
 

alloydog

New Member
1x1x800?

To cantre a table, in plain old HTML4.01 you use:

Code:
<table align="center" width="800">

If you use styling then:

Code:
<table style="width:800;margin:0 auto;">

or:
HTML
Code:
<table class="centre">

CSS
Code:
.centre {width:800;margin:0 auto;}
 
Top