zoukankan      html  css  js  c++  java
  • CSS单行,多行文字变点状|省略号(...)

    单行

    你需要操作的DOM{
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
    }
    

    多行

    p{
    position: relative; 
    line-height: 20px; 
    max-height: 40px;
    overflow: hidden;
    }
    p::after{
    content: "...";
    position: absolute; 
    bottom: 0; right: 0; 
    padding-left: 40px;
    background: -webkit-linear-gradient(left, transparent, #fff 55%);
    background: -o-linear-gradient(right, transparent, #fff 55%);
    background: -moz-linear-gradient(right, transparent, #fff 55%);
    background: linear-gradient(to right, transparent, #fff 55%);
    }
    

    or

    .text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
  • 相关阅读:
    十二月31日
    十二月31号
    10,28
    10,27
    十月26
    十月22
    十月21
    十月二十
    十月16
    0227 数据库的知识
  • 原文地址:https://www.cnblogs.com/caoxueyang/p/12691460.html
Copyright © 2011-2022 走看看