JSFiddle - React, Tailwind, and code Playground

by gion_13

HTML

<div class="cube">
<img class="super_cube_image" alt="" src="http://otm.projects-directory.com/images/OTM_CubeImage_RainMan.png">
<img class="super_cube_image_bg" alt="" src="http://otm.projects-directory.com/stylesheets/assets/ie-cube-bg.png">
</div>

CSS

.cube{
    width : 160px;
    height : 160px;
    position : absolute;
    top : 200px;
    left : 200px;
    border : 1px solid red;
}
img{
    position : absolute;
}
.super_cube_image{
    right : 0;
    top : 0;
    width : 160px;
    height : 160px;
    border : 1px dashed green;
}

.super_cube_image_bg{
    left : 0;
    bottom : 0;
    width : 180px;
    height : 180px;
    border : 1px dashed blue;
}