JSFiddle - React, Tailwind, and code Playground

HTML

<p>In Internet Explorer 8, the list item's bullet will look like a rectangle instead of a circle.</p>

<ul>
    <li>List Item</li>
</ul>

<p>Screenshot:</p>

<img...

CSS

ul {
    margin-left: 20px;
}

li {
    list-style-type: disc;
    font-family: "MS Sans Serif", sans-serif;
}