Mit folgendem Attribut kann ich eine bestimmte Spaltenbreite erzwingen: style="table-layout:fixed". Gibt es auch eine Möglichkeit um die Zeilenhöhe festzulegen?
Beim IE wirkt sich das Attribut auch auf die Höhe aus, der NS :
BEISPIEL:
<table border="0" cellpadding="0" cellspacing="0" style="table-layout:fixed;">
<tr>
<td style="height:12px;width:30px;">asdfasdf</td>
</tr>
</table>
Der NS schafts nur nicht, die schrifthöhe zu unterschreiten.
BEISPIEL:
<table border="0" cellpadding="0" cellspacing="0" style="table-layout:fixed;" height="100%" width="100%">
<tr>
<td style="height:12px;width:25px;background-color:yellow;overflow:hidden;">asdfasdf</td><td>hallo</td>
</tr>
<tr><td>hallo</td><td>hallo</td></tr>
<tr>
<td style="height:50px;width:25px;background-color:yellow;overflow:hidden;">asdfasdf</td><td>hallo</td>
</tr>
</table>