Is there any way to center a panel inside a ScrollPanel?
When I have to center a panel inside any other panel that is not a
ScrollPanel, I use CSS:
Parent
   position: relative;
Child
   position: absolute;
   left: 50%;
   top: 50%;
   margin-left: -(panelWidth/2)
   margin-top: -(panelHeight/2)
However, this is not working inside a ScrollPanel. Specifically,
neither Firefox nor IE uses the "top: 50%" property. Any idea?
Thanks in advance.

-- 
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