JSFiddle - React, Tailwind, and code Playground

by Pranav C

HTML

<div id="container">
   <div id="c">
       Hi hello
    </div>
</div>

CSS

#container{
    background:url(http://placekitten.com/400/500) no-repeat;
    height:500px;
    width:500px;
    text-align:center;
}
#c{
    width:100px;
    height:100px;
    background: rgba(123,0,0,0.5);
    color:white;
}