美文网首页
html 超出部分显示省略号

html 超出部分显示省略号

作者: 追逐繁星的阿忠 | 来源:发表于2019-01-09 10:12 被阅读15次
    省略号.png

    wxss

    /*显示一行 超出部分... */
    .text-over-ell{
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    /**文本两端对齐*/
    .text-lr-align{
      overflow: auto;
      text-align:justify; 
      text-justify:inter-ideograph;
    }
    

    wxml text-over-ell

    <view class="tl-flex2" style="width:430rpx;height:166rpx;margin-left: 24rpx">
                    <view class="tl-title-14 text-over-ell">{{item.desc}}</view>
                    <view class="tl-title-9">[{{item.pay_way_name}}]</view>
                    <view class="tl-title-11">原价:¥{{item.price}} <text class="tl-title-12">会员价:¥{{item.actual_price}}</text></view>
                </view>
    
    

    相关文章

      网友评论

          本文标题:html 超出部分显示省略号

          本文链接:https://www.haomeiwen.com/subject/qsdwrqtx.html