Reputation: 3704
I am looking someway to put widgets on each other (each on its layer or something...). Something like the Swing CardLayout but with a transparent background support.
For example
I have
Image img=new Image("imageA.png");
HTML h=new HTML("<img src=imageB.png>");
How to put "h" on "img" left upper corner?
Any useful comment is appreciated
Upvotes: 0
Views: 916
Reputation: 2077
You can either use AbsolutePanel from GWT. Or you can use CSS set z-index of h higher than img and set absolute position from CSS as you want.
Upvotes: 1
Reputation: 80340
You can use AbsolutePanel
. It positions it's children at fixed coordinates so you can make them overlap.
Upvotes: 1