1. 程式人生 > >table td內容超出部分隱藏

table td內容超出部分隱藏

.stripe {/*my table*/
    table-layout: fixed;
    margin: 0px;
 }
.msg{/* td */
    text-overflow: ellipsis; /* for IE */
    -moz-text-overflow: ellipsis; /* for Firefox,mozilla */
    overflow: hidden;
    white-space: nowrap;
    text-align: left
}