JSFiddle - React, Tailwind, and code Playground

HTML

<div class='elem'>Bob Cravens</div>
<div class='elem'>Bob Cravens</div>

CSS

.elem:before{
    content: 'test';
    height: 160px;
    width: 136px;
    position: relative;
    top: 0px;
    left: 0px;
}

.elem{
    background-color: red;
    margin: 60px 136px;
}