Template:DivCol
Opens a multi-column block for long bulleted lists — pairs with {{DivCol end}}, which closes it. Everything written between the two calls (a normal wikitext bulleted list) flows automatically into columns rather than a single long list.
Usage:
{{DivCol}}
* Item one
* Item two
* Item three
* Item four
{{DivCol end}}
Parameters
- colwidth — optional. Target width per column (e.g.
20em,15em). Defaults to20emif omitted — the browser fits as many columns of roughly that width as the available space allows, rather than a fixed column count.
Requires the following CSS in the site stylesheet:
.vault-divcol {
column-fill: balance;
}
.vault-divcol ul {
margin-top: 0;
}
