I have created a simple table and want to align the td elements in center but align:center in css doesn’t seem to work
.cTable td{
align:center;
}
<table border='1' id='mytable' class="cTable">
<tbody>
<tr><th>Claim ID</th><th>Status</th></tr>
<tr><td align="center">22</td><td>333</td></tr>
<tr><td>22</td><td>333</td></tr>
<tr><td>22</td><td>333</td></tr>
</tbody>
</table>
It should be
text-align, notalignhttps://developer.mozilla.org/en/CSS/text-align