I want to display the data by a ng-repeat
in a table, it puts the correct data but always to the left of the table cell, I already tried to add <td valign="middle">
but without success.
<table class="table table-bordered">
<tr>
<th>Dia</th>
<th>Mes</th>
<th>Ano</th>
<th>Media</th>
</tr>
<tr ng-repeat="result in jsonResult">
<td valign="middle">{{result.Dia}}</td>
<td valign="middle">{{result.Mes}}</td>
<td valign="middle">{{result.Ano}}</td>
<td valign="middle">{{result.Media}}</td>
</tr>
</table>