JSFiddle - React, Tailwind, and code Playground

by Prashant Tapase

HTML

<a href="http://google.com">
    <div class='outer-box'>
    <div class="box"></div>
    </div>
</a>

CSS

.outer-box{
    width:120px;
    height:120px;    
    display: inline-block;
}.box{
    width:100px;
    height:100px;
    color:green;
    box-shadow: 10px 10px 5px #888888;
}