how do i make table rows to be of the exactly same height? whenever the text in the <td>
exceeds the limit it exand the row. How do i make it in a way that it don't do that. instead show less text
here is the code
<div class="firstDiv" style="width: 200px; height: 200px;">
<table border="1" style="border-collapse: collapse;">
<tr style="height: 20px;">
<th width="33%">First Name</th>
<th width="33%">Last Name</th>
<th width="33%">Country Of Origin OR MIG</th>
</tr>
<tr>
<td>Mark</td>
<td>Hopkins lee brimlow</td>
<td>Not living in world right now</td>
</tr>
</table>
</div>