zoukankan      html  css  js  c++  java
  • 【小程序】文本超出则省略号

    单行:

    .text{

    font-size:28rpx;
    height:70rpx;
    line-height:35rpx;
     
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;

    }

    多行:

    .text{

    font-size:28rpx;
    height:70rpx;
    line-height:35rpx;
     
    display: -webkit-box;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;   //行数为2
    overflow: hidden;
    text-overflow:ellipsis;

    }

  • 相关阅读:
    2017.8.07
    2017.8.05
    2017.8.04
    2017.8.03
    2017.8.02
    2017.8.01
    2017.7.31
    2017.7.29
    2017.7.28
    简易日历
  • 原文地址:https://www.cnblogs.com/smilexumu/p/9023188.html
Copyright © 2011-2022 走看看