1. 程式人生 > >table 表格 td 長度固定、內容過長、超過部分設定

table 表格 td 長度固定、內容過長、超過部分設定

這裡寫圖片描述
首先設定 table:

<table width='100%' border='0' cellspacing='0' cellpadding='0' class='mytable' style='table-layout: fixed'>;

td 方式一:(自動換行)

<td colspan='3' style='word-wrap: break-word'>mail</td>

這裡寫圖片描述

td 方式二:(省略號代替)

.mytable tr td {
    /* for IE */  
    text-overflow: ellipsis;
    /* for Firefox,mozilla */ 
    -moz-text-overflow: ellipsis;
    overflow: hidden;  
    white-space: nowrap;  
    text-align: left  
}  

這裡寫圖片描述