Fix ordered list counter

This commit is contained in:
Jonas D 2019-01-26 11:07:37 +01:00 committed by GitHub
parent a07b644a0a
commit 927ed22176
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,13 +153,14 @@ ul > li:after {
content: "-";
}
ol {
counter-reset: a;
ol li:before {
content: counters(item, ".") ". ";
counter-increment: item
}
ol > li:after {
content: counter(a) ".";
counter-increment: a;
ol ol li:before {
content: counters(item, ".") " ";
counter-increment: item
}
ol li:nth-child(n+10):after {