JSFiddle - React, Tailwind, and code Playground
HTML
<div id='box'>
<div id='innerBox'>
<img id='cateye' src='http://images1.jyimg.com/w4/register/i/landing_page_new/photo/225_20110624105606559_m.jpg'/>
</div>
</div>
CSS
* {
margin:0px;
padding:0px;
line-height: 0;
}
div#box {
width:500px;
height:200px;
border:1px solid black;
position: absolute;
top:150px;
left:0px;
background-color:beige;
}
div#innerBox {
border:1px solid black;
position: relative;
top:30px;
background-color:yellow;
}