mirror of
https://github.com/Gioni06/terminal.css
synced 2025-03-08 23:59:03 -05:00
Fix ordered list counter
This commit is contained in:
parent
a07b644a0a
commit
927ed22176
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user