You need to use CSS. You don't need layer or table for that. Here is an example: text-align: justify
TIP:
if you apply CSS (text aligment) to the whole table or cell (<td>) the text inside the cell will be normally justified only in NN but not in IE. To justify text inside the table for IE you have to use <span> tags inside the cell.
Example:
<td><span style="text-align: justify">here goes some text ... </span></td>
To make text justified both in IE and NN apply CSS both to cell/table and span.
Example:
<td style="text-align: justify"><span style="text-align: justify">here goes some text ... </span></td>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.