InterviewSolution
Saved Bookmarks
| 1. |
Can We Set Css Style In Gwt Java Code? |
|
Answer» The look and FEEL of a GWT application can be customized via CSS files. Each widget in GWT can be given a HTML "DIV" container and can therefore be INDIVIDUALLY styled by CSS. You USE the Java method SETSTYLE(String s) for this. The look and feel of a GWT application can be customized via CSS files. Each widget in GWT can be given a HTML "div" container and can therefore be individually styled by CSS. You use the Java method setStyle(String s) for this. |
|