html文本超出用省略号表示

来源:互联网 发布:淘宝药品必须货到付款 编辑:程序博客网 时间:2024/05/19 10:14
 <html>   <body> <style> table{ table-layout:fixed; } td{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; } </style> <table class="tbl" border=1 width=200>   <tr>   <td width=25% class="td" nowrap>abcdefghigklmnopqrstuvwxyz 1234567890</td>   <td width=25% class="td" nowrap><div>abcdefghigklmnopqrstuvwxyz 1234567890</div></td> <td width=25% class="td" nowrap>abcdefghigklmnopqrstuvwxyz 1234567890</td> </tr>   </table>   </body> </html>
原创粉丝点击