Tengo este codigo:
<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>
Las filas están demasiado separadas. Quiero las líneas más juntas.
Lo que hice fue agregar el siguiente CSS pero no parece cambiar nada.
.topics tr { height: 14px; }
¿Qué estoy haciendo mal?