Text-overflow CSS truncation

后端 未结 3 1657
执笔经年
执笔经年 2020-12-14 15:03

Earlier i was doing it dynamically using JS.. but we were getting some performance issues cuz of which we have to come with an alternative option.

I am now truncati

相关标签:
3条回答
  • 2020-12-14 15:31

    I assume you only want the dots to appear in red? Unfortunately this isn't possible with simple css. However I found a tutorial which manages to make a custom ellipsis style, that will only be displayed when it's necessary:

    https://www.mobify.com/dev/multiline-ellipsis-in-pure-css/

    It's quite a nice hack and not easy to explain in words. Maybe this jsfiddle I just made can help you:

    http://jsfiddle.net/MyUQJ/9/

    Remove the overflow: hidden; on the .wrap to see what's happening. The main idea is that the .end div moves to the left bottom in .left-side when the text is overflowing, while when it's not overflowing it's on the right bottom of the .text. Then the .ellipsis div is positioned absolute inside the relative .end, so you when you position it to the right it's visible when the text is overflowing and it's overflowing when the text isn't overflowing! Funny, isn't it?

    Anyway, here's the raw code:

    HTML:

    <div class="wrap">
        <div class="left-side"></div>
        <div class="text">
            This is a short story, it 
            doesn't need to be ellipsed.
        </div>
        <div class="end">
            end
            <div class="ellipsis">...</div>
        </div>
    </div>
    
    <br>
    <br>
    <br>
    <br>
    
    <div class="wrap">
        <div class="left-side"></div>
        <div class="text">
            This is a long story. You won't be able to 
            read the end of this story because it will 
            be to long for the box I'm in. The story is 
            not too interesting though so it's good you 
            don't waste your time on this.
        </div>
        <div class="end">
            end
            <div class="ellipsis">...</div>
        </div>
    </div>
    

    CSS:

    .wrap {
        height: 100px;
        width: 234px;
        border: solid 1px #000;
        overflow: hidden;
    }
    
    .left-side {
        float: left;
        width: 32px;
        height: 100px;
        background: #F00;
    }
    
    .text {
        float: right;
        border: solid 1px #0F0;
        width: 200px;
    }
    
    .end {
        position: relative;
        float: right;
        width: 30px;
        border: solid 1px #00F;
    }
    
    .ellipsis {
        position: absolute;
        top: -25px;
        left: 198px;
        background: white;
        font-weight: bold;
        color: #F0F;
    }
    

    Of course, when you're gonna implement this you want to remove all the borders and the 'end' text. I made this to be an easy to understand example. Also you probably want to give the wrap a position: absolute; and then give it margin-left: -32px, where the width is the width for the .left-side, so your text won't have a margin on the left side.

    Good luck!

    0 讨论(0)
  • 2020-12-14 15:34

    **Easy Way to do with css **

    HTML

    <div class="text-truncate">
    The company’s commitment to rebuilding the relationship with you, our community</div>
    

    Css :

    .text-truncate {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    0 讨论(0)
  • 2020-12-14 15:45

    Works here:

    • http://jsfiddle.net/TReRs/4/

     .overme {
            width: 300px;
            overflow:hidden; 
            white-space:nowrap; 
            text-overflow: ellipsis;
            color: red;
        }
     <div class="overme">
            how much wood can a woodchuck chuck if a woodchuck could chuck wood?
        </div>
    
    
    
       

    Trailing dots/ellipsis are colored in red using that basic CSS.

    0 讨论(0)
提交回复
热议问题