I want to add a Chevron, at the end of each li
, and I want to align all the Chevrons 5px from the end of the ul
, like the image below:
How can I achive this?
ul {
background-color: cyan;
width: 120px;
}
<ul>
<li><a href="#">Cars</a></li>
<li><a href="#">Real Estate</a></li>
<li><a href="#">Fashion</a></li>
<li><a href="#">Sports</a></li>
</ul>
P.S. I am using font awesome's chevron: <i class="fas fa-chevron-right"></i>