Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you reverse ol numbering without javascript while supporting ie7+?

I have found solution that are either deprecated and don't work on my current browsers (firefox & chrome) or that use :before selectors or children > selectors which aren't supported by ie7+.

Ideas?

share|improve this question
> is supported by IE7+, not that it'd be related to your question... – BoltClock Sep 16 '11 at 0:16
you can try manually reversing li display order with css, but that would be just a perversion. – c69 Sep 16 '11 at 8:01

2 Answers

up vote 6 down vote accepted

This can be accomplished by setting the value of the lis. If you have a really long list, you can use JavaScript to set the values. I don't think there is a CSS solution to reversing the order of the list.

<ol>
    <li value="3">first</li>
    <li value="2">second</li>
    <li value="1">third</li>
</ol>
share|improve this answer
2  
HTML5 supports <ol reversed>, but its not supporrted by any browser yet.. whatwg.org/specs/web-apps/current-work/multipage/… So, just use manual solution or resort to javascript. – c69 Sep 16 '11 at 7:57

Using Javascript and jQuery:

$(function() {

    var list = $("#list").find("li");

    // count the total number of <li>'s
    var count = $(list).length;

    // loop through each <li> and set value to a decreasing value of count
    list.each(function() {

        $(this).attr("value", count--);

    });

});

Relevant HTML:

<ol id="list">
    <li>first</li>
    <li>second</li>
    <li>third</li>
</ol>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.