td文字超出设定宽度变成点

来源:互联网 发布:预测股票涨跌软件 编辑:程序博客网 时间:2024/06/11 03:46
<style type="text/css">
table{ 
width:100%; 
table-layout:fixed;/* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */ 
}
td{
word-break:keep-all;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
</style>
</head>
原创粉丝点击