Is there a way to align the second row's td element to the right without adding an extra empty td? I'm looking for a cleaner solution, possibly using CSS. Any suggestions?
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td style="text-align: right">$100</td>
</tr>
<tr>
<td style="text-align: right">$100</td>
</tr>
</table>