Numbering ordered lists and File:Startpage SME.png: Difference between pages

(Difference between pages)
No edit summary
 
((username removed) (log details removed))
 
Line 1: Line 1:


To create numbering as 1., 1.1, 1.1.1 and so on, use the following style:<syntaxhighlight lang="text">
/*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;
}
</syntaxhighlight>Output:
# Step 1
## Substep 1
## Substep 2
### Subsubstep 1
# Step 2
[[Category:Customization]]
[[en:{{FULLPAGENAME}}]]
[[de:Aufzählungslisten_nummerieren]]

Latest revision as of 12:12, 8 May 2023



To submit feedback about this documentation, visit our community forum.

No categories assignedEdit

Discussions