In my CSS, I am aligning two parts of a list item to the left and right side like this:
ul li div.left {
float: left;
}
ul li {
text-align: right;
}
<ul>
<li><div class="left">On the left</div>On the right</li>
</ul>
I am wondering if it's possible to add one more part that aligns to the bottom left below the existing left and right parts.
I have attempted the following:
<li><div class="left">On the left</div>On the right<p><div class="left">At the bottom<div></p></li>
Unfortunately, this rendering does not display correctly. Any suggestions?