JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <div class="inner">
        <div class="clear">
            
        </div>
        <div class="text">
            my text
        </div>
    </div>
</div>

CSS

.container {
    background: url("http://www.naircare.co.uk/images/main/hub/bg-face.jpg");
    height: 450px;
    width: 600px;
}
.inner {
    position: absolute;
    width: 300px; 
    height: 100px;
    top: 160px;
    left: 265px;
}
.clear {
    width: 100px;
    height: 90px;
    border: 5px solid white;
    float: left;
}
.text {
    width: 180px;
    height: 90px;
    border: 5px solid black;
    float: left;
    background-color: white;
}