JSFiddle - React, Tailwind, and code Playground
by tickietick
HTML
<ul>
<li><span class="checkmark"></span>Hello</li>
<li>Hi</li>
</ul>
CSS
.checkmark {
position: absolute;
top: 3px;
left: 5px;
height: 15px;
width: 15px;
border: 2px solid #003865;
background-color: white;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}