How can I create space between a Checkbox and its content in GWT?
Checkbox c = new Checkbox("checkme");
c.setStyleName("checkbox_style");
When I try using padding or margin, the entire checkbox and its content move together. Is there a way to achieve a gap specifically between the checkbox and "checkme" text?