CSS word-wrap / text-overflow with fixed height [d

2019-02-17 20:58发布

This question already has an answer here:

i have the following example.

http://jsfiddle.net/qFDxp/

HTML:

<div class="test">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</div>

CSS:

.test
{
    display: block;
    height: 299px;
    left: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    top: 110px;
    white-space: pre-line;
    width: 199px;
    z-index: 1;
    background-color: #FFFFFF;
    border: 1px solid #777777;
    position: absolute;
}

What i wish?

want i want Thank you in Advance!

1条回答
何必那么认真
2楼-- · 2019-02-17 21:41

text-overflow: ellipsis only works on single line content as you need the line white-space:nowrap for it to work.

Check this post for some ideas for workarounds

查看更多
登录 后发表回答