CSS 修剪表内容

发布于 2024-11-18 10:27:21 字数 227 浏览 7 评论 0原文

我正在寻找一种使用 CSS 修剪表格单元格中长内容的方法。例如。假设给定的单元格包含太长的内容。调整表格的宽度以适合这个很长的内容。但是,由于表格已经占用了 100% 的宽度,因此表格的许多部分会溢出到窗口的一侧以适应此内容。

所以,我的问题是,有没有一种方法可以使用 CSS(最好是 < CSS3 以获得更好的 IE 兼容性)来显示表格单元格中的文本,直到单元格的宽度,然后隐藏任何溢出,而不会推出单元格的宽度桌子?

I am looking for a way to use CSS to trim long content from a table cell. For example. say a given cell contains content which is way too long. The width of the table is adjusted to fit this really long content. However, since the table already consumes 100% width, a lot of the table spills out side of the window to fit this content.

So, my question is, is there a way that I can use CSS (preferably < CSS3 for better IE compatibility) to show text in a table cell up to the cell's width, then hide any overflow with out pushing out the width of the table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

琉璃梦幻 2024-11-25 10:27:21

这是一个跨浏览器的解决方案。

将其添加到您的 CSS:

/** Custom CSS logic to truncate text with ellipsis **/
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -moz-binding: url('/assets/xml/ellipsis.xml#ellipsis');
}

将此文件 (ellipsis.xml) 添加到您的服务器(在本例中为 /assets/xml/):

<bindings xmlns="http://www.mozilla.org/xbl" xmlns:xbl="http://www.mozilla.org/xbl" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    <binding id="ellipsis">
        <content>
            <xul:window>
                <xul:description crop="end" xbl:inherits="value=xbl:text">
                    <children/>
                </xul:description>
            </xul:window>
        </content>
    </binding>
</bindings>

然后将该类添加到任何需要在溢出时截断的 DOM 节点:

<div class="ellipsis">....

Here is a cross-browser solution.

Add this to your CSS:

/** Custom CSS logic to truncate text with ellipsis **/
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -moz-binding: url('/assets/xml/ellipsis.xml#ellipsis');
}

Add this file (ellipsis.xml) to your server (in this case, at /assets/xml/):

<bindings xmlns="http://www.mozilla.org/xbl" xmlns:xbl="http://www.mozilla.org/xbl" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    <binding id="ellipsis">
        <content>
            <xul:window>
                <xul:description crop="end" xbl:inherits="value=xbl:text">
                    <children/>
                </xul:description>
            </xul:window>
        </content>
    </binding>
</bindings>

Then add the class to any DOM node which requires truncating on overflow:

<div class="ellipsis">....
·深蓝 2024-11-25 10:27:21

除了 Firefox(我认为)之外,所有浏览器都支持此功能。 Elipsis 在截断的文本处生成 ... ,而 Clip 仅剪辑文本...

td {
  text-overflow: ellipsis;
  /* or text-overflow: clip; */
}

This is supported in all browsers apart from Firefox (I think). Elipsis produces ... at truncated text and clip just clips text...

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