Template:Flatlist/doc

From Forsaken Saga Wiki
Revision as of 17:02, 21 June 2024 by 176.88.149.150 (talk) (Created page with "== Usage == {{tl|flatlist}} starts a horizontal list, such as: {{flatlist| * cat * dog * horse * cow * sheep * pig }} == Examples == <syntaxhighlight lang="wikitext"> {{flatlist| * cat * dog * horse * cow * sheep * pig }} </syntaxhighlight> produces: {{flatlist| * cat * dog * horse * cow * sheep * pig }} === Syntax for ordered lists === <syntaxhighlight lang="wikitext"> {{flatlist| # first #...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Usage[edit source]

{{flatlist}} starts a horizontal list, such as:

Examples[edit source]

{{flatlist|
* [[cat]]
* [[dog]]
* [[horse]]
* [[cow]]
* [[sheep]]
* [[pig]]
}}

produces:

Syntax for ordered lists[edit source]

{{flatlist|
# [[first]]
# [[second]]
# [[3|third]]
# [[fourth]]
# [[fifth]]
# [[sixth]]
}}

produces:

Using optional parameters[edit source]

{{flatlist |indent=2 
|style=border:solid 1px silver; background:lightyellow; 
|class=nowraplinks |
* [[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:

Technical details[edit source]

This template uses the .hlist CSS class defined in MediaWiki:Common.css to generate horizontal lists. It causes ordinary html list items to be displayed inline (horizontally), where they would normally display as block elements (vertically). The class also generates the interpuncts between list items and parentheses around nested lists. Some of the CSS used is not compatible with some older browsers, notably Internet Explorer 6 and 7.

Wikitext Expanded template HTML
{{flatlist|
* cat
* dog
* horse
* cow
* sheep
* pig
}}
Template:Nowiki2
<div class="hlist">
<ul><li>cat</li>
<li>dog</li>
<li>horse</li>
<li>cow</li>
<li>sheep</li>
<li>pig</li></ul>
</div>

See also[edit source]