Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些带有 HTML 数据的表格。我试图弄清楚如何动态设置列宽(最好使用 CSS)以适应最长的值,但我希望列标题是自动换行的,因为相比之下它们相当长。
例如我有
Percentage of Items purchased 40% 60% 30%
我希望列宽适合 40%、60%、30% 的值,并用“购买的项目百分比”字包起来。
在您的样式表中添加:
white-space:nowrap;给你的TD,但不是给你的TH。
white-space:nowrap;
TD
TH