JSFiddle - React, Tailwind, and code Playground

by raviolicode

HTML

<ul>
    <li> <a href="#">Home </a> </li>
    <li> <a href="#">About </a> </li>
</ul>

CSS

li {
    list-style-type: none;
    border-right: 1px solid black;
    float: left;
    padding-right: 5px;
    margin-right: 5px;
}
li:last-child {
    border-right: none;
}
a {
    text-decoration: none;
    color: black;
}