Forum How do I...?

Small caps in lists

ixgal
Hi, is it possible in Prince to have small-caps in the letters of a list?
For example:
A. First line item
B. Second line item

And having A and B in small-caps.

Thanks
mikeday
Yes this should do the trick:
<style>
ol[type="a"] li::marker {
    font-variant: small-caps
}
</style>
<ol type="a">
<li>First</li>
<li>Second</li>
</ol>