I hardly use float:right
in my css and now I did and came across a annoying problem. I am floating my menu items to the right
my HTMl
<ul id="extMenu">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Feedback</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
my CSS
#extMenuBlock {
}
#extMenuBlock ul#extMenu {
list-style:none;
padding:0;
margin:0;
}
#extMenuBlock ul#extMenu li {
float:right;
padding:5px;
}
Now when the items are float, I receive my menu is this order Contact Feedback Home
, but I want them in opposite order ie Home Feedback Contact