桌子高度不起作用
我的应用程序中的表格存在此问题。 当 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,将以下代码添加到您的 CSS 中:
这基本上相当于:
两种方法都确保 TH 内容不会换行成两行。
Yes, add the following bit of code to your CSS:
Which is basically the equivalent of:
Both methods ensure that the TH contents are not wrapped onto two lines.