处理字体溢出

 

/*ellipsis*/
.ellipsis {
    width:100%;
    display: block;;
    white-space: nowrap; /*文本不换行*/
    -o-text-overflow: ellipsis; /* Opera */
    text-overflow: ellipsis;
    overflow: hidden; /*不允许出现滚动条*/
}

 

posted @ 2017-04-03 09:46  linyongqin  阅读(122)  评论(0)    收藏  举报