Ich habe diesen Code:
<table class="topics" >
<tr>
<td style="white-space: nowrap; padding: 0 5px 0 0; color:#3A5572; font-weight: bold;">Test</td>
<td style="padding: 0 4px 0 0;">1.0</td>
<td>abc</td>
</tr>
<tr>
<td style="white-space: nowrap; padding: 0 5px 0 0; color:#3A5572; font-weight: bold;">test2</td>
<td style="padding: 0 4px 0 0;">1.3</td>
<td>def</td>
</tr>
</table>
Die Reihen sind zu weit voneinander entfernt. Ich möchte, dass die Linien näher beieinander liegen.
Was ich getan habe, war das folgende CSS hinzuzufügen, aber es scheint nichts zu ändern.
.topics tr { height: 14px; }
Was mache ich falsch?