I am working with an HTML table that contains a single TR tag and two TD tags. Each TD has two HR tags creating horizontal lines, along with some text. I am looking for a way to keep the text aligned at the top of the TD and the horizontal line at the bottom of each column.
Below is a snippet of the code I am referring to:
<html>
<body>
<table width="100%">
<tr>
<td style="text-align: left; width: 50%;">
sdbasdbmnsadbmnasdsad
<br />
sdbasdbmnsadbmnasdsad
<br />
sdbasdbmnsadbmnasdsad
<br />
sdbasdbmnsadbmnasdsad
<br />
sdbasdbmnsadbmnasdsad
</hr>
</td>
<td style="text-align: left; width: 50%;">
sdbasdbmnsadbmnasdsad
<br />
sdbasdbmnsadbmnasdsad
<br />
sdbasdbmnsadbmnasdsad
<br />
<hr width="40%" />
</td>
</tr>
</table>
</body>
</html>