No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
To create numbering as 1., 1.1, 1.1.1 and so on, use the following style:<syntaxhighlight lang="text"> | To create numbering as 1., 1.1, 1.1.1 and so on, use the following style:<syntaxhighlight lang="text"> | ||
/*Numbered lists*/ | /*Numbered lists*/ | ||
article ::marker { | article ol ::marker { | ||
content: counters(list-item,'.')". " | content: counters(list-item,'.')". " | ||
} | } |
Revision as of 16:32, 4 May 2023
To create numbering as 1., 1.1, 1.1.1 and so on, use the following style:
/*Numbered lists*/
article ol ::marker {
content: counters(list-item,'.')". "
}
article .references ::marker {
content: " "
}
article ol {
margin-left:2em!important;
}
/*Number footnotes separately */
article ol.references {
counter-reset:ref; list-style-type:none;
}
article ol.references li:before{
counter-increment:ref;
content:counter(ref) ". ";
float: left;
margin-right: 0.4em;
}
Output:
- Step 1
- Substep 1
- Substep 2
- Subsubstep 1
- Step 2