I had a beautiful pure HTML mockup for a webpage that I am now recreating in GWT. I\'m attempting to use the same css in my GWT app, but that\'s not working well for me. G
You can use < !important > declaration. It's one of easiest choices
--- GWT ----
.gwt-PopupPanel {
border: 3px solid #E7E7E7;
padding: 3px;
background: white;
}
--- Custom style ---
.gwt-PopupPanel {
padding: 0px !important;
}
--- Result ---
.gwt-PopupPanel {
border: 3px solid #E7E7E7;
padding: 0px;
background: white;
}