이 코드가 있습니다 :
<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