In this code, the LI elements have float: left and are aligned to the left of the container. I want them aligned right. How to do it using CSS?
For example: [.................................. Item1.Item2]
Here is the HTML code:
<div class="menu"> <ul> <li>Item1</li> <li>Item2</li> </ul> </div>
PS The order of LI should not be inverse.
vicuv source share