views:

12

answers:

0

This was hinted at in another post, but I need some assistance with displaying a list like this in IE7

1. 
   a. 
   b. 
         1.0 
         2.0 
           2.1 
2.

I think I am limited to JavaScript because of IE7's lack of CSS :before support. For example, this does not work

OL { counter-reset: item }
LI { display: block }
LI:before { content: counters(item, ".") " "; counter-increment: item }

Any pointers?