TAB command

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


.myTable{margin:0 0 0 20px}

Then add the class to the table in question:
HTML


<table class="myTable">

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