Here is the scenario:
<div class="menu">
<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
</ul>
</div>
and CSS:
.menu li {display:inline}
The results would be:
1 2 3
but I want to display them from right to left:
3 2 1
How can I achieve this please?
`s? )