JSFiddle - React, Tailwind, and code Playground
by parkji
HTML
<ul>
<li>This is something</li>
<li>This is something else</li>
<li>This is another thing</li>
<li>This is the last thing</li>
</ul>
CSS
ul {
margin: 100px;
list-style: disc;
}
li {
margin-bottom: 3px;
}
ul li:not(:last-child):after {
content: ' AND';
}