XHTML 中的 WBR 替代方案
我一直在表格的标题单元格中使用标签,这样我就可以控制浏览器在哪里中断长单词。 这很有效,但它不兼容 XHTML。 使用 wbr 标签的最佳替代方案是什么(即有效的 XHTML)? 例子:
<table>
<thead>
<tr><th>ThisIsAReally<wbr />LongWord<th></tr>
</thead>
<tbody>
<tr><td>...</td></tr>
<tr><td>...</td></tr>
<tr><td>...</td></tr>
</tbody>
</table>
I've been using tags in the thead cells for my tables, so I can control where browsers break long words. This works great, but its not XHTML compliant. What is the best alternative to using the wbr tag, that is valid XHTML? Example:
<table>
<thead>
<tr><th>ThisIsAReally<wbr />LongWord<th></tr>
</thead>
<tbody>
<tr><td>...</td></tr>
<tr><td>...</td></tr>
<tr><td>...</td></tr>
</tbody>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
quirksmode 有解决方案
quirksmode has the solution