0
我想調整錶行的高度爲24px。我已經嘗試將行高放入頂層CSS中,並將其寫入內聯。無法調整自舉錶行高
CSS:
tbody tr {
line-height: 24px;
height: 24px;
padding: 0;
}
tbody td {
line-height: 24px;
height: 24px;
padding: 0;
}
HTML:
<thead id='dontMove'>
<tr id='theRow'>
<th>Rank</th><th>Applicants</th><th># Enrolled</th>
</tr>
</thead>
<tbody style='font-size: 12px;'>
<tr style='height: 24px;'><td style='height: 20px;'>Contents</td></tr>
//then I close the table after it's contents
w繼承人div? – user176105