CSS 修剪表内容
我正在寻找一种使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个跨浏览器的解决方案。
将其添加到您的 CSS:
将此文件 (ellipsis.xml) 添加到您的服务器(在本例中为 /assets/xml/):
然后将该类添加到任何需要在溢出时截断的 DOM 节点:
Here is a cross-browser solution.
Add this to your CSS:
Add this file (ellipsis.xml) to your server (in this case, at /assets/xml/):
Then add the class to any DOM node which requires truncating on overflow:
除了 Firefox(我认为)之外,所有浏览器都支持此功能。 Elipsis 在截断的文本处生成
...
,而 Clip 仅剪辑文本...This is supported in all browsers apart from Firefox (I think). Elipsis produces
...
at truncated text and clip just clips text...