JSFiddle - React, Tailwind, and code Playground
HTML
<div class="we">link link link</div>
CSS
.we{
position:relative;
float:left;
height:20px;
padding: 0 10px;
background:green url('...') repeat-x 50% 0;
}
.we:before{
content:'';
position: absolute;
top:20px;
left:50%;
width:20px;
height:20px;
margin-left: -10px;
background:red url('...') repeat-x 50% 0;
};