How do I style a GWT FlexTable using only CSS? The API mentions nothing about which CSS classes are available.
Aren't there any classes and do I have to set them myself?
I would for instance like to do styling on "th".
FlexTable(它扩展了HTMLTable)似乎没有应用它包含的单元格的任何特定样式。有两种可能的解决方案:
.myFlexTable th {}
) 来设置单元格的样式。