I was trying to make table rows all the same height as the highest element, without a fixed value. With height auto the elements are all different height and a defined value isn't a good choice because the text of the row with much height is really unsteady.
Description of the problem as image:
Style + how I make the table:
.Tright {
width: 33%;
height: auto;
float: right;
}
<table class="Tright" >
<tr>
<th>Nachname:</th>
<td><?php echo $data['Nachname']; ?></td>
</tr><tr>
<th>Funktion:</th>
<td><?php echo $data['Funktion']; ?></td>
</tr><tr>
<th>Funktionsbezeichnung:</th>
<td><?php echo $data['Funktionsbezeichnung']; ?></td>
</tr><tr>
<th>Telefonnummer:</th>
<td><?php echo $data['Telefonnummer']; ?></td>
</tr><tr>
<th>E-Mail:</th>
<td><?php echo $data['E-Mail']; ?></td>
</tr><tr>
<th>Beschreibung:</th>
<td><?php echo $data['Beschreibung']; ?></td>
</tr>
</table>
Thanks for your help!