Basically I have this layout and I'm trying to make the triangle with border appear on hover.
ul {
background: #ccc;
padding: 20px;
}
ul li {
display: inline-block;
padding: 20px;
}
ul a {
text-decoration: none;
}
ul li:hover a {
border-bottom: 1px solid white;
}
<ul>
<li><a href="">About</a></li>
<li><a href="">shop</a></li>
<li><a href="">contact</a></li>
</ul>