JSFiddle - React, Tailwind, and code Playground

by andrey90vs

HTML

<div class="content-box">
    <ul class="menu">
        <li class="item"><a href="#">Item1</a></li>
        <li class="item"><a href="#">Item2</a></li>
        <li class="item"><a href="#">Item3</a></li>
        <li class="item"><a href="#">Item4</a></li>
    </ul>
</div>

CSS

*{
    margin:0;
    padding:0;
    list-style:none;
    text-decoration:none;
}
body{
    width:500px;
    background-color:#9C9393;
}
.menu{
    margin:30px auto;
    display:block;
    width:90%;
}
.item{
    border-radius:5px;
    display:block;
    float:left;
    width:20%;
    margin-left:10px;
    background-color:#8C4A4A;
    text-align:center;
}
.item a{
    color:#fff;
    display:block;
    width:100%;
    height:100%;
    border-bottom:4px solid #000;
    height:10px;
}
.item a:hover{
    border-bottom:2px solid #000;
    height:15px;
}
.item a:active{
    border-bottom:2px solid #000;
    height:20px;
}