td{
width: 80px;/* 要顯示文字的寬度 */
float: left;/* 左對齊,不設置的話只在IE下好用 */
overflow: hidden; /* 超出的部分隱藏起來 */
white-space: nowrap;/* 不顯示的地方用省略號...代替 */
text-overflow: ellipsis;/* 支持 IE */
-o-text-overflow: ellipsis;/* 支持 Opera */
}