We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type
The type attribute of the ordered list ( MDN | The Ordered List element ) is ignored (reset).
<ol type="a"> </ol>
Reason:
'ol > li::before': { content: 'counter(list-counter) "."' },
Possible solution:
'ol[type=a]': { --list-counter-style: lower-alpha }, 'ol[type=A]': { --list-counter-style: upper-alpha }, 'ol[type=i]': { --list-counter-style: lower-roman }, 'ol[type=I]': { --list-counter-style: upper-roman }, 'ol[type=1]': { --list-counter-style: decimal }, 'ol > li::before': { content: 'counter(list-counter, var(--list-counter-style, decimal)) "."' },
The text was updated successfully, but these errors were encountered:
start
ol
keep type on ol elements in mind
18ce863
Closes: #72 Closes: #70 Co-authored-by: Peter Neupauer <[email protected]>
1093f16
Successfully merging a pull request may close this issue.
The
type
attribute of the ordered list ( MDN | The Ordered List element ) is ignored (reset).Reason:
Possible solution:
The text was updated successfully, but these errors were encountered: