I have a list and I want to alight part of that list to the right hand side. So the money I want to justify up to the right border of the space...
This is what I had..
<ul>
<li>Fred £20</li>
<li>Bob £40</li>
</ul>
So I tried..
<ul>
<li>Fred <span class="text-align:right" > £20</span></li>
<li>Bob <span class="text-align:right" > £40</span></li>
</ul>
But that does not work, anyone know what I am doing wrong?
Thanks
This is what I had..
<ul>
<li>Fred £20</li>
<li>Bob £40</li>
</ul>
So I tried..
<ul>
<li>Fred <span class="text-align:right" > £20</span></li>
<li>Bob <span class="text-align:right" > £40</span></li>
</ul>
But that does not work, anyone know what I am doing wrong?
Thanks
Comment