My goal is to wrap ordered list entries numbers into parentheses, i.e. (a), (b), ...
While the following code works, the final indentation differs from Chrome/FF rendering. It starts in the left margin.
PrinceXML 9.0 rev 5, Win7 64-bit
While the following code works, the final indentation differs from Chrome/FF rendering. It starts in the left margin.
<html>
<head>
<style type="text/css">
ol {list-style-type: none; margin-left: -1.4em}
li:before {content: "(" counter(section, lower-alpha) ") "; position: absolute; left: -1.4em;}
li {counter-increment: section; position: relative;}
</style>
</head>
<body>
<h1>Title</h1>
<ol>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ol>
</body>
</html>
PrinceXML 9.0 rev 5, Win7 64-bit