Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. .marginRight{
  2. margin-right: 10px;
  3. }
  4. FlowPanel myFP=new FlowPanel();
  5. Button myButton=new Button("Button");
  6. Button myButton2=new Button("Button2");
  7. myButton.addStyleName("marginRight");
  8. myFP.add(myButton);
  9. myFP.add(myButton2);
  10.  
  11. <div><button class="gwt-Button GHKUF0UDD4" type="button">Button</button><button class="gwt-Button" type="button">Button2</button></div>
  12.  
  13. .marginRight{
  14. margin-right: 10px !important;
  15. }
  16.  
  17. myButton.setStyleName("marginRight");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement