Template:Flat list
| This template is used in system messages, and on approximately 136,000 pages. Changes to it can cause immediate changes to the Wikipedia user interface. To avoid major disruption and server load, any changes should be tested in the template's /sandbox or /testcases subpages, or in your own user subpage. The tested changes can be added to this page in a single edit. Please discuss changes on the talk page before implementing them. |
| This template uses TemplateStyles: |
| This template can only be edited by administrators because it is transcluded onto one or more cascade-protected pages. |
This template provides a WCAG/ISO standards-compliant accessible alternative to comma-, dash- or other single character-delimited lists, per Manual of Style/Lists § Horizontal lists and Manual of Style:Accessibility § Horizontal lists.
Lists output by {{Flat list}} and {{Horizontal list}} are semantically and visually identical, differing only in the underlying wiki-markup they expect as input to create the lists.
Usage
{{Flat list}} starts a horizontal list, such as:
If this template is used with no parameters, {{End flat list}} is required. For navigation boxes using {{Navbox}}, one can set |listclass=hlist and achieve the same styling without using this template. For image captions, list (i.e. leading asterisk) markup does not work, so consider using {{Horizontal list}} instead.
Parameters
TemplateData for Flat list
| Parameter | Description | Type | Status | |
|---|---|---|---|---|
| Content | 1 | The list to wrap. | Content | suggested |
| Extra Classes | class | Adds extra CSS classes to the containing div. | String | optional |
| CSS Style | style | Adds extra CSS properties to the containing div. Complex styles should not be used in articles (per MOS:DEVIATIONS) but may be acceptable on user, project and talk pages.
| String | optional |
| Indent | indent | Indents the list by a number of standard indents (one indent being 1.6em). (Useful in an indented discussion thread.)
| Number | optional |
Examples
{{Flat list|
* [[cat]]
* [[dog]]
* [[horse]]
* [[cow]]
* [[sheep]]
* [[pig]]
}}
produces:
Alternative syntax
{{Start flat list}}
* [[cat]]
* [[dog]]
* [[horse]]
* [[cow]]
* [[sheep]]
* [[pig]]
{{End flat list}}
produces:
Syntax for ordered lists
{{Flat list|
# [[first]]
# [[second]]
# [[3|third]]
# [[fourth]]
# [[fifth]]
# [[sixth]]
}}
produces:
Using optional parameters
{{Flat list|indent=2|class=nowraplinks|style=background-color: var(--background-color-notice-subtle, lightgray); border: thin solid silver; color: var(--color-base, black);|
* [[Alpine skiing at the 1936 Winter Olympics]]
* [[Alpine skiing at the 1948 Winter Olympics]]
* [[Alpine skiing at the 1952 Winter Olympics]]
* [[Alpine skiing at the 1956 Winter Olympics]]
* [[Alpine skiing at the 1960 Winter Olympics]]
* [[Alpine skiing at the 1964 Winter Olympics]]
}}
produces:
Generating an inline list preceded by text
In some situations, it may be useful to present an inline list preceded by other text. Normally, this template is rendered as a block element that starts on a new line. In order to prevent that new line, use |class=inline and wrap the preceding text and this template in <div>...</div> tags (div tags are not necessary if the template is inside a table cell).
Without div tags (normal usage; note that class=inline does not work)
Here's a list: {{flat list
|class=inline
|1=
* foo
* bar
* baz
}}
produces:
Here's a list:- foo
- bar
- baz
With div tags (class=inline works)
<div>Here's a list: {{flat list
|class=inline
|1=
* foo
* bar
* baz
}}</div>
produces:
- foo
- bar
- baz
Technical details
This template uses the .hlist CSS class defined in Template:Hlist/styles.css to generate horizontal lists. It causes ordinary HTML list items to be displayed inline (horizontally), where normally they would be displayed as block elements (vertically). The class also generates the interpuncts between list items and parentheses around nested lists.
| Wikitext | Expanded template | HTML |
|---|---|---|
{{Flat list|
* cat
* dog
* horse
* cow
* sheep
* pig
}}
| '"`UNIQ--templatestyles-0000001C-QINU`"'<div class="hlist " > * cat * dog * horse * cow * sheep * pig </div> | <div class="hlist"><ul>
<li>cat</li>
<li>dog</li>
<li>horse</li>
<li>cow</li>
<li>sheep</li>
<li>pig</li>
</ul></div>
|
Maintenance categories
See also
- {{End flat list}}
- {{Horizontal list}}
- {{Plain list}} and {{Unbulleted list}}
- {{Bulleted list}}
- {{Ordered list}}
- {{Nowrap}}
- {{Page list}}
- Manual of Style:Accessibility § Horizontal lists
