私はこのコードを持っています:
<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>
行の間隔が離れすぎています。線を近づけたい。
私がしたことは、次のCSSを追加することでしたが、何も変更していないようです。
.topics tr { height: 14px; }
何が悪いのですか?
関連:stackoverflow.com/questions/2092696/how-to-fix-height-of-tr
—
Thilo