JSFiddle - React, Tailwind, and code Playground

by 1eddy87

HTML

<div> <a href="#">Home</a>
 <a href="#">News</a>
 <a href="#">Articles</a>

    <div style="clear:both;"></div>
</div>

CSS

div {
    background-color: #49628a;
}

div a {
    float: left;
    padding: 20px;
    color: white;
    text-decoration: none;
    
    -webkit-box-shadow: inset 0 0 30px 15px #49628a;
    -moz-box-shadow: inset 0 0 30px 15px #49628a;
    box-shadow: inset 0 0 30px 15px #49628a;
}

div a:hover {
    background: #527fa9;
    
    -webkit-transition: 500ms linear 0s;
    -moz-transition: 500ms linear 0s;
    -o-transition: 500ms linear 0s;
    transition: 500ms linear 0s;
}