我有一个CellTable
. Columns
我以编程方式将文本向右对齐的列之一:
column.setHorizontalAlignment(HasHorizontalAlignment.ALIGN_RIGHT);
此外,我希望单元格在右侧有一个填充。无法让它工作。这是我尝试过的:
column.setCellStyleNames("numberCell");
.numberCell {
padding-right: 5px !important;
margin-right: 5px !important;
color: red !important;
}
单元格中的文本呈现为红色,但没有填充。