1. 程式人生 > >HTML+css 文字只顯示一行

HTML+css 文字只顯示一行

lamp tex lips 設置 ips -h css orien nbsp

電腦端

設置行高,超出隱藏

p{
    width: 80%;
    height: 16px;
    line-height: 16px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    white-space:nowrap;
}

移動端

p {
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    display
: box; display: -webkit-box; line-clamp: 1; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }

HTML+css 文字只顯示一行