JSFiddle - React, Tailwind, and code Playground
by klierik
HTML
<img src="http://d1kpauj42bqh9t.cloudfront.net/media/catalog/product/cache/2/image/9df78eab33525d08d6e5fb8d27136e95/i/p/iphone5black.jpg" alt="" class="a" />
<img src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT-sb3Lf02r3IBuRl5ohXblfqEWhA5RgRob9i3GgZaYig0G7dl0" alt="" class="b">
CSS
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
position: relative;
}
.a, .b {
position: absolute;
width: 200px;
display: block;
}
.a {
left: 0;
bottom: 100px;
}
.b {
right: 0;
bottom: 150px;
}