Is it possible to align nested HTML list items to the left? For example:
- Bat
- Cat
- Rat
- one
- two
- three
- Mat
<ul>
<li>Bat</li>
<li>Cat</li>
<li>Rat<ul><li>one</li><li>two</li><li>three</li></ul></li>
<li>Mat</li>
</ul>
The desired outcome should be (keeping the nested list intact):
- Bat
- Cat
- Rat
- one
- two
- three
- Mat