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 (which extends HTMLTable) doesn't appear to apply any particular styles the cells it contains. There are two possible solutions:
.myFlexTable th {}
FlexTable (which extends HTMLTable) doesn't appear to apply any particular styles the cells it contains. There are two possible solutions:
.myFlexTable th {}
) to style the cells.