<table cellspacing="0" id="contactTable" style="table-layout:table-layout:fixed;; width:100%; font-weight:normal; position: absolute; top:45; left: 0;"> <td height="50" style="padding-left:5px; overflow:hidden; "> <span style="text-transform:capitalize;line-height:100%;"> //names here </span> </td> ...more code </table>
这不行。溢出仍然使得单元格更高,高度是包含内容。
解决方法
最好的解决方案是把一个div放在单元格的高度上:
<td style="padding-left:5px;"> <div style="height: 50px; overflow:hidden;"> ... </div> </td>
BTW,什么是跨度?如果您只需要它的样式,您可以直接替换单元格。