JSFiddle - React, Tailwind, and code Playground
by infous
HTML
<div id="mm">
<ul>
<li><a href="">Choice</a></li>
<li><a href="">Choice</a></li>
<li><a href="">Choice</a></li>
</ul>
</div>
CSS
#mm {
width: 960px;
height: 50px;
background-color: #e8e4e0;
}
#mm ul li {
display: inline-block;
width: 160px;
height: 50px;
border-top: 4px solid transparent;
}
#mm ul li a {
text-transform: uppercase;
color: #372f7e;
font-size: 9.2px;
line-height: 50px;
text-align: center;
border-top: 4px solid transparent;
}
#mm ul li:hover {
position: relative;
background-color: #ffffff;
font-weight: bold;
border-top-color: black;
line-height: 46px;
}