what is the CSS equivalent to "align=center" in HTML ?
e.g:
<td align="center">mytext</td>
isn't this it?
<td style="text-align: center">mytext</td>
or this:
<td style="align: center">mytext</td>
?
e.g:
<td align="center">mytext</td>
isn't this it?
<td style="text-align: center">mytext</td>
or this:
<td style="align: center">mytext</td>
?

Comment