0

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

user592704
  • 3,674
  • 11
  • 70
  • 107

2 Answers2

1

You can use AbsolutePanel. It positions it's children at fixed coordinates so you can make them overlap.

Peter Knego
  • 79,991
  • 11
  • 123
  • 154
1

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.

jaxb
  • 2,077
  • 3
  • 20
  • 32