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

<div class="bullet-centre">
  <ul>
    <li>something about the first point</li>
    <li>something about the second point</li>
  </ul>
</div>

CSS

body {
    text-align: center;
}


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

.bullet-centre {
    margin: auto;
    width: 75%;
}