显示最多 3 行的文本字段
目标:我想在定义宽度的
中显示最多 3 行的长文本字段。当前有缺陷的方法:
<style>
div{
width:50%;
height:100px;
padding:10px;
white-space:normal;
overflow:hidden;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
}
</style>
<div>
<%= @company.description %>
</div>
问题:如果底线未与任意 100px+20px 高度完美对齐,则上面的内容会切断底线。因此,我经常会遇到一行文本被水平截断的情况。我怎样才能显示最多 3 整 行文本而不是将其剪切掉?
Goal: I'd like to display up to 3 lines of a long text field in a <div>
of defined width.
Current flawed approach:
<style>
div{
width:50%;
height:100px;
padding:10px;
white-space:normal;
overflow:hidden;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
}
</style>
<div>
<%= @company.description %>
</div>
Problem: The above cuts off the bottom line if it is not perfectly lined up with the arbitrary 100px+20px height. So, I often end up with a line of text halfway cut off horizontally. How can I instead display up to 3 whole lines of text instead of cutting it off?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
em
,而不是px
作为高度
。所以像3em
或3.12em
这样的东西就可以让它恰到好处(也满足填充)。Use
em
, notpx
for theheight
. So something like3em
or3.12em
to get it just right (cater for the padding as well).