JSFiddle - React, Tailwind, and code Playground

by chris5marsh

HTML

<div class="boxes">
    
    <a></a>
    <a></a>    <a></a>
    <a></a>    <a></a>
    <a></a>
    
</div>

CSS

.boxes a {
    float:left;   
    background:#c00;
    margin:10px;
    display:block;
    width:40px;
    height:40px;
    -webkit-border-radius:0px;
    -webkit-transition:all 0.2s linear;
}
.boxes a:hover {
    -webkit-border-radius:20px;
}