How to align td elements in center
css, html, html-table
Solution
It should be `text-align`, not `align`
https://developer.mozilla.org/en/CSS/text-align
Problem
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> ```