开发者

Decrementing an ordered list

开发者 https://www.devze.com 2023-02-21 17:37 出处:网络
I have a ordered list in an html document, you know, like 开发者_运维百科<ol> <li> item one

I have a ordered list in an html document, you know, like

开发者_运维百科
<ol>
     <li> item one
     <li> item two
</ol>

which displays, obviously, as

1. item one
2. item two

I want to make these numbers countdown rather than up. Anyway to do this using html/css without manually numbering everything?


You can reverse CSS3 "counters"

see this answer I posted recently, it might help

How can I center the text but not the number label of an HTML ordered list

note though that that won't work in IE7 however if you hardcode the "values" in reverse you'll get the fall back too, obviously hardcoding the values should work for every browser on it's own too.. so the CSS3 counters is maybe a wishlist item ;)

0

精彩评论

暂无评论...
验证码 换一张
取 消