如何在 Eclipse RAP 中更改 TableItems 的填充
How to change the padding of TableItems in Eclipse RAP
我有下一个情况,请看图。
如何更改此填充值?我需要减少它。
RWT Theming Reference 列出了 Table-Cell
CSS 规则,其中有 padding
属性,
Defines the padding (i.e. the inner distance between border and content) for a table cell.
无需尝试,您应该能够使用
指定自定义填充
Table-Cell {
padding: 2px;
}
另请参阅开发人员指南的 RWT Theming 章节了解更多信息。
我有下一个情况,请看图。
如何更改此填充值?我需要减少它。
RWT Theming Reference 列出了 Table-Cell
CSS 规则,其中有 padding
属性,
Defines the padding (i.e. the inner distance between border and content) for a table cell.
无需尝试,您应该能够使用
指定自定义填充Table-Cell {
padding: 2px;
}
另请参阅开发人员指南的 RWT Theming 章节了解更多信息。