I'm new to Play. I'm wondering how to put an image on top of another. I used this method
<div style="position: relative; left: 0; top: 0;">
<img src="a.jpg" style="position: relative; top: 0; left: 0;"/>
<img src="b.jpg" style="position: absolute; top: 30; left: 70;"/>
</div>
from How do I position one image on top of another in HTML?
But running on Play, it just didn't work. The images are positioned side by side, and changing the "top" and "left" value didn't make any difference.
And I ran the static html file with static path to image, it worked. I'm quite confusing right now.
I'm using Play 2.2.0.