表格单元格拉伸
我的表格中有两列宽度相等(50%、50%)。 我在其中显示搜索结果 URL。对于大网址,列会拉伸并破坏布局。
对问题有什么建议吗?
I have two columns in my table with equal width (50%, 50%).
I am showing search results URL in them. For big urls the columns are stretching and destroying the layout.
Any suggestion to the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 如何在 HTML 中将长行换行而不用空格?
这些也可能有帮助:
最佳自动换行算法?
HTML 表格中的自动换行
SEE How to wrap long lines without spaces in HTML?
These may help too:
Best word wrap algorithm?
Word-wrap in an HTML table
您可以在此处设置
text-overflow:ellipsis;
和/或使用 jQuery 省略号插件。You can set
text-overflow:ellipsis;
described here and/or use jQuery ellipsis plugin.