×
×
Correct!
Set the text alignment in <td> elements to "right".
<style>
table, th, td {
border: 1px solid green;
}
td {
text-align: right;
}
</style>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
</tr>
</table>
Not CorrectClick here to try again. Correct!<style> table, th, td { border: 1px solid green; }{ : right; } </style> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>Peter</td> <td>Griffin</td> </tr> <tr> <td>Lois</td> <td>Griffin</td> </tr> </table> |