JSFiddle - React, Tailwind, and code Playground
by coverbeck
HTML
<ul>
<li></li>
<li></li>
<li></li>
</ul>
CSS
ul {
list-style-type: none;
position: relative;
}
li {
display: inline;
/* height: 16px;
width: 16px;
border-radius: 50%;
*/
}
li:before {
content: '';
height: 2px;
width: 15px;
background: red;
position: absolute;
}