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.
我在 Oracle Apex 工具中有一个交互式网格。我需要包装没有 html 标记的标题。
是否可以对标题和单元格进行自动换行?
试试这个 CSS(你可以把它放在页面内联 CSS 属性中):
.a-GV-table td, .a-GV-headerLabel { white-space: normal; }
这对我行得通。