What is the correct way to center-align the content in a table cell?
<table> <tr> <td>Data</td> </tr> </table>
Add align="center" to the <td> tag
align="center"
<td>
Add style="text-align:center" to the <td> tag
style="text-align:center"
Add center="true" to the <td> tag
center="true"
Add position="center" to the <td> tag
position="center"