Forum Moderators: open
<ul style="direction:rtl"> <li>one</li> <li>two</li> <li>three</li></ul>
<ul style="direction:rtl"><li>one</li><li>two</li><li>three</li></ul>
that also moves the whole list to the right side of the page.
robert
css:
div.list { position: relative; left: 10%; top: 10%; width: 20%; } ul.rtl {direction: rtl;}
<div class="list"> <ul class="rtl"> <li>one</li> <li>one two</li> <li>one two three</li> </ul> <div>