Right now I am using the "<center>" command to align my table.
I would like to align it to the left by dropping the center command.
I would like to know if there is a "TAB" command so that the table will not be up against the left barrier.
| SitePoint Sponsor |
Right now I am using the "<center>" command to align my table.
I would like to align it to the left by dropping the center command.
I would like to know if there is a "TAB" command so that the table will not be up against the left barrier.


Hi,
You will need to use CSS and apply a left margin to the table.
CSS
Then add the class to the table in question:Code:.myTable{margin:0 0 0 20px}
HTML
Code:<table class="myTable">
www.pmob.co.uk CSS FAQ 3 col demo Read My CSS Articles
Ultimate CSS Reference
Check out SitePoint's latest JavaScript challenge

Do a search for CSS and margin then post how you managed to solve your problem.
Bookmarks