text-overflow:ellipsis does not work with
in

2019-05-07 23:46发布

When using text-overflow:ellipsis and there is br tag in markup in IE then second line is not cut off.

Markup:

<div class="text">
    really long text
    <br/>
    really long text
</div>

Css:

.text{
    width: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

Output:

reall...
really long

Expected (how it works in other browsers):

reall...
reall...

Here is fiddle

1条回答
该账号已被封号
2楼-- · 2019-05-08 00:13

This could be one of the solutions for IE

<div class="text"> really long text <br/> <div class="text">really long text </div> </div>

查看更多
登录 后发表回答