Merge pull request #2 from Gioni06/fix-ol-counter

Fix ordered list counter
This commit is contained in:
Jonas D 2019-01-26 11:08:28 +01:00 committed by GitHub
commit 5d4163a241
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 {