HTML中利用CSS來使表格裏的數據過長時用...或省略顯示

<html>
 <head><title>讓表格裏的數據按寬度顯示,並多出的部分隱藏用...</title>
  <style type="text/css">
    table
    {
       border-collapse:collapse;
       width:484px;
      table-layout:fixed;
       }
    td {
      overflow:hidden;
      text-overflow:ellipsis;
     }
   </style>
  </head>
 <body>
<table width="200" borderColor="#7788cc" border="1" style="table-layout:fixed;">
<tr>
<td width="80" title="人生最痛苦的事就是失去最親的人。">
<nobr>人生最痛苦的事就是失去最親的人。</nobr></td>
<td><nobr>人生最痛苦的事就是失去最親的人。</nobr></td>
<td><nobr>人生最痛苦的事就是失去最親的人。</nobr></td>
</tr>
</table>
</body>
</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章