JSFiddle - React, Tailwind, and code Playground

by webviper

HTML

<div class="one">
   <div class="two">1</div>
2
</div>

CSS

.one {
width: 75px;
height: 25px;
padding: 25px 0;
text-align: center;
margin: 50px;
background: #F23; 
position: relative;    
}
.two {
width: 20px;
height: 20px;
background: #FA3;
text-align: center;
line-height: 20px;
background: FFF; 
position: absolute;
top: -10px;
left: -10px;   
}