Anki - align bullet points to the left

Solution for this question: https://forums.ankiweb.net/t/bullet-points-formatted-incorrectly/20915

by OjisanSeiuchi

HTML

Lorem ipsum

<ul>
<li>something about the first point</li>
<li>something about the second point</li>
</ul>

CSS

body {
    text-align: center;
}


/* you need to align li items to the left */
li {
    text-align: left;
}