JSFiddle - React, Tailwind, and code Playground

by Tilwin Joy

HTML

<ul>
    <li>Here's a string of text that is so long that it will wrap onto the next line. I want all the text to be left-aligned rather than having some if it under the bullet point.</li>    
</ul>

CSS

ul
{    
    padding:10px;
}

li 
{
  list-style-type: disc;
  list-style-image: none;
  margin-left:0px;
  margin-bottom: 5px;
}