1. 程式人生 > >CSS text-overflow 超出溢出顯示省略號兼容

CSS text-overflow 超出溢出顯示省略號兼容

500px 樣式 body clas class ellipsis tex ips 省略號

1,html布局

<table>

  <tr>

    <td></td>

  </tr>

</table>

2,css樣式

table{

  table-layout:fixed; //重要樣式

}

td{

  width:500px;overflow:hidden;overflow:ellipsis;

}

3,兼容

兼容火狐,谷歌等主流瀏覽器

CSS text-overflow 超出溢出顯示省略號兼容