天天看點

表格單元設定固定高度,不讓内容撐開高度,文字超出部分顯示...

td {
    height: 30px;
    line-height: 30px;
    padding: 0;
    text-align: center;
    white-space:nowrap;
    overflow:hidden;
    word-break:keep-all;
    text-overflow:ellipsis
}
           

繼續閱讀