如何在表格单元格中的连字符处换行文本?

发布于 2024-12-10 03:33:36 字数 254 浏览 2 评论 0原文

我找到了 CSS 3 的 text-wrap 和 Overflow-wrap 属性,但它们似乎没有做任何事情。

http://www.w3schools.com/cssref/css3_pr_text-wrap.asp

如何在表格单元格内的连字符处换行文本?在 Chrome 14 上进行测试。

I found the text-wrap and overflow-wrap CSS 3 properties, but they don't seem to do anything.

http://www.w3schools.com/cssref/css3_pr_text-wrap.asp

How to wrap text at hyphens within a table cell? Testing on Chrome 14.

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

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

发布评论

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

评论(2

要走就滚别墨迹 2024-12-17 03:33:36

您需要建议的(非标准)CSS 3 文本 连字符 属性:

td { hyphens: manual }

请注意,仅在 FF、Chrome 和 Safari 中支持; IE 或 Opera 不支持它

You want the proposed (non-standard) CSS 3 Text hyphens property:

td { hyphens: manual }

Note that this is only supported in FF, Chrome, and Safari; it is unsupported in IE or Opera.

琴流音 2024-12-17 03:33:36

您必须使用table-layout:fixed。在 Chrome 15 和 IE7 中测试。

HTML:

<table>
  <tbody>
    <tr>
      <td>htqdrs-sdfwwwf-dfaaa-com-bbb-ccc-ddd-eee-fff-kljdfgg</td>
    </tr>
  </tbody>
</table>

CSS:

table {    
    table-layout:fixed;
    width : 50px;
    border : 1px solid #000;    
    word-wrap : break-word;
}
td {
    width : 50px;
}

JS 小提琴:
http://jsfiddle.net/9ZjCy/1/

You must use table-layout:fixed. Tested in Chrome 15 and IE7.

HTML:

<table>
  <tbody>
    <tr>
      <td>htqdrs-sdfwwwf-dfaaa-com-bbb-ccc-ddd-eee-fff-kljdfgg</td>
    </tr>
  </tbody>
</table>

CSS:

table {    
    table-layout:fixed;
    width : 50px;
    border : 1px solid #000;    
    word-wrap : break-word;
}
td {
    width : 50px;
}

JS Fiddle:
http://jsfiddle.net/9ZjCy/1/

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