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.
我正在尝试将表格放入 Pentaho BI 中的容器中。Table 即将从容器中取出。我该如何摆脱它?Table 组件是否有任何属性可以单独调整其宽度或列宽?
您可以使用 CSS 来设置表格的样式。有一个属性——table-layout可以解决问题。例如:
table-layout
.dataTable { table-layout: fixed; }
另一种选择是使用表格组件属性手动设置列的宽度。您可以使用任何 CSS 有效值,包括像素和百分比。