Is there a way in HTML / CSS to format a legal document that should remain the same as the original document format. In other words.
etc. etc.
I know that you can use nested OL, but this does not display what I need as above
EDIT
Of course, this is great until IE popped out with its ugly head! (I need to wonder what Microsoft developers should think of millions of complaints about their product.) I found this solution http://www.sitepoint.com/techy-treasures-5-fudging-css-counters-in-internet- explorer / and tried to implement it.
This works in part, but I have no idea how to use this expression correctly:
#css-counters-test li { zoom: expression( (typeof step == "undefined" ? step = 1 : step++), this.innerHTML = (typeof this.processed == "undefined" ? ("<span class=before>" + step + ": </span>") : "") + this.innerHTML, this.processed = true, this.runtimeStyle.zoom = "1" ); }
source share