JSFiddle - React, Tailwind, and code Playground
HTML
<div id="tvshape" style="background-image: url(http://openclipart.org/image/300px/svg_to_png/4112/Clue_Simple_Clouds.png);"></div>
CSS
#tvshape {
position: relative;
width: 200px;
height: 150px;
margin: 20px 10px;
background: #0809fe;
border-radius: 50% / 10%;
color: white;
text-align: center;
text-indent: .1em;
}
#tvshape:before {
content: "";
position: absolute;
top: 10%;
bottom: 10%;
right: -5%;
left: -5%;
background: inherit;
border-radius: 5% / 50%;
}
#tvshape {
background-position: center center;
}
/* no longer necessary
#tvshape img {
height:100%;
width:100%;
} */
body{
background:red;
}