JSFiddle - React, Tailwind, and code Playground

by nikolya223

HTML

<div class="button"><div>ntrcn</div></div>

CSS

div.button{
    width: 100px;
    height: 100px;
    border: 0px solid green;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background-color: green;
    display: table;
   
}
div.button:before{
    position: absolute;
    display: block;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    border-radius: 5px;
    background-color: white;
    content: "";
    border: 3px solid transparent;
}
div.button>div{
    vertical-align: middle;    
    position: relative;
    display: table-cell;
    text-align: center;
 
 
}