Unfortunately this doesn't have anything to do with GWT.  Floating
elements to the right always place the first element to the far right
and the next to the left of it.

One thing you could try is putting this elements in a span with
display="inline-block" and then floating that span to the right.  This
would put the buttons in the order you want and still have them
aligned to the right.

style:
button-float: {
   display: inline-block;
   float:right;
}

<div class="button-container">
   <span class="button-float">
      <button value="button1"/>
      <button value="button2"/>
      <button value="button3"/>
   </span>
</div>

Hope this helps

On Sep 29, 12:37 pm, Magnus <[email protected]> wrote:
> No ideas?
>
> Magnus

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to