JSFiddle - React, Tailwind, and code Playground
by halirgb
HTML
<div class="container">
<div id="frame">
<img width="190" src="http://ryanseacrest.com/wp-content/uploads/2013/01/Kid-President-900-600.jpg" alt="" />
</div>
</div>
CSS
.container{
width:250px;
margin:0 auto;
}
#frame{
background:url(http://th07.deviantart.net/fs71/200H/f/2011/038/0/1/bizee_frame_4_by_bizee1-d390fho.png);
background-repeat: no-repeat;
display:inline-block;
width:200px;
height:200px;
}
img{
position:relative;
left:0px;
top:0px;
z-index:-1;
}