显示最多 3 行的文本字段

发布于 2024-11-06 21:13:23 字数 505 浏览 0 评论 0原文

目标:我想在定义宽度的

中显示最多 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心凉 2024-11-13 21:13:23

使用 em,而不是 px 作为高度。所以像 3em3.12em 这样的东西就可以让它恰到好处(也满足填充)。

Use em, not px for the height. So something like 3em or 3.12em to get it just right (cater for the padding as well).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文