Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to make counter-increment count ‘down’ in CSS3 ? Re: How to make counter-increment count ‘down’ in CSS3 ?

#114647
JohnMotylJr
Participant

@amis,

You can do this through a little jQuery

count = $('element').length + 1;
$('element').each(function () {
count--;
$(this).prepend('-' + count + ' ');
});

Here is a example: CodePen Example