JSFiddle - React, Tailwind, and code Playground

by aflynt

HTML

<div class="content">
  <ul>
    <li>Item 1</li>
    <li>Item 2 </li>
  </ul>
</div>

CSS

li {
    list-style:none;
}

li:before {
    content: "";
    position:relative;
    left: -10px;
    background-color:red;
    
    display:inline-block;
    width:10px;
    height:10px;
    border-radius:50%
}