You can try to put an id to the table if it does not already have it and then apply the style you want for all td
#teste td{
text-align: center;
};
<table>
<thead>
<tr>
<th>Nome</th>
<th>Posição</th>
</tr>
</thead>
<tbody id="teste">
<tr>
<td>Leonardo</td>
<td>1º Colocado</td>
</tr>
<tr>
<td>Batman</td>
<td>2º Colocado</td>
</tr>
<tr>
<td>Homer Simpson</td>
<td>3º Colocado</td>
</tr>
</tbody>
</table>
Or there's also the option of creating a class in and defining its style by css.
Ex:
.td-alinhado-centro{
text-align: center;
}
So you would have to assign this class to all the td's that you want to be aligned that way.