最佳答案
我有省略号的问题,这是我的 HTML:
<div id="wrapper">
<span id="firstText">This text should be effected by ellipsis</span>
<span id="lastText">this text should not change size</span>
</div>
有没有一种方法可以做到这一点与纯 CSS? 以下是我试过的方法:
#firstText
{
overflow: hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
#lastText
{
white-space:nowrap;
overflow:visible;
}
这就是它的表现形式:
这篇文章应该受省略号的影响
虽然这是我想要的结果:
这篇文章应该是... 这篇文章不应该改变大小