<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="www.w3.org/1999/xhtml">
<head>
<title>CSS自动限制文本显示字数</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<style type="text/css">
.ctl{table-layout:fixed}.ctl td{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;padding:2px}
</style>
</head>
<body>
<table width="200" cellspacing="0" cellpadding="0" border="1" class="ctl">
<tr>
<td>一起学编程网www.zftb.cn</td>
</tr>
</table>
</body>
</html>
|