I think the answer to this question is no... but does anyone know of a an HTML/CSS way to create an ordered list without a period after the numbers? Or, alternatively, to sp
You can add the numbers later using jQuery:
$("ul").each(function() { $(this).find("li").each(function(index) { $(this) .css("list-style-type", "none") .prepend("" + (index + 1) + ""); }) })
Try the sample here.
More info on jQuery here.