0

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?

Zim3r
  • 580
  • 2
  • 14
  • 36
  • Thanks @Pow-Ian, surely I can but in this case I was looking for some other way. – Zim3r Oct 26 '12 at 13:50
  • @raina77ow Sorry I didn't know it's necessary because it works fine this way. I'll edit my post. – Zim3r Oct 26 '12 at 13:52