JSFiddle - React, Tailwind, and code Playground

by thirtydot

HTML

<div id="menu">
    <span>things</span>
    <span>stuff</span>
    <span>items</span>
</div>

CSS

#menu span {
    border-left: solid black 1px;
    /*
    a: bunch;
    of: stuff;
    */
}
#menu span:first-child {
    border-left: 0
}