桌子高度不起作用

发布于 2025-01-07 02:36:16 字数 243 浏览 0 评论 0原文

我的应用程序中的表格存在此问题。 当 tr 中的 td 描述非常大时,这会将我的名字推到更多行上。是否可以为 tr 设置高度,例如 10 px,以便在 td 描述非常大时不会在多行上进行修改?

检查我的小提琴: http://jsfiddle.net/ebG9N/40/

I have this problem with tables from my app.
When the description of a td from tr is very large this is pushing my th name on more lines. Is possible to set for tr th a height for example 10 px in order to not be modified on many lines when td description is very large?

Check my fiddle:
http://jsfiddle.net/ebG9N/40/

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

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

发布评论

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

评论(1

筱果果 2025-01-14 02:36:16

是的,将以下代码添加到您的 CSS 中:

th { white-space:nowrap; }

这基本上相当于:

<span>Start date Column</span> <!--   = non-breaking space -->

两种方法都确保 TH 内容不会换行成两行。

Yes, add the following bit of code to your CSS:

th { white-space:nowrap; }

Which is basically the equivalent of:

<span>Start date Column</span> <!--   = non-breaking space -->

Both methods ensure that the TH contents are not wrapped onto two lines.

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