Here is my current setup:
This is my CSS:
.p1
{
direction:rtl;
text-align:right;
float:right;
}
This is how it looks on the screen:
<div class="p1">
@{
for (int i = 0; i < 5; i++)
{
@Html.ActionLink(i.ToString(), "../home/index/" + i);
}
}
</div>
The output I'm getting is: 1 2 3 4 5
But what I actually want is: 5 4 3 2 1