.td{
line-height: 12px
}
或者用百分比也行
.td{
line-height: 150%
}
调用时先在<head></head>之间放入
<link href="css.css" rel="stylesheet" type="text/css" />
注意href="css.css"是路径自己定义
调用时用class="td"就行了
例:
<table width="50" >
<tr>
<td class="td">121312313131</td>
</tr>
</table>