首页 > 代码库 > 表格超出部分隐藏

表格超出部分隐藏

<html>
<head>
<style type="text/css">
td{
white-space:nowrap;text-overflow: ellipsis;overflow: hidden;
}
</style>
</head>
<body>
<table width="350px" border="1" cellspacing="0" cellpadding="0" style="table-layout:fixed;">
<tr>
<td width="200">&nbsp;</td>
<td style="">超长的不希望换行而希望能自动隐藏的内容,超长的不希望换行而希望能自动隐藏的内容</td>
<td>&nbsp;</td>
</tr>
</table>
</body>
</html>