Template:Flatlist/doc: Difference between revisions
Ostermayer (talk | contribs) (Created page with "{{Documentation subpage}} <!-- Categories go at the bottom of this page and interwikis go in Wikidata. --> {{Documentation subpage}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS...") |
Ostermayer (talk | contribs) |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 8: | Line 8: | ||
{{tl|Flatlist}} starts a horizontal list, such as: | {{tl|Flatlist}} starts a horizontal list, such as: | ||
{{flatlist}} | {{flatlist}} | ||
* | * cat | ||
* | * dog | ||
* | * horse | ||
* | * cow | ||
* | * sheep | ||
* | * pig | ||
{{endflatlist}} | {{endflatlist}} | ||
The bottom margin is inherited from the current container. Normally this will be 0.5em | The bottom margin is inherited from the current container. Normally this will be 0.5em. | ||
For navigation boxes using {{tl|navbox}}, one can set {{para|listclass|hlist}}, and achieve the same styling without using this template. | For navigation boxes using {{tl|navbox}}, one can set {{para|listclass|hlist}}, and achieve the same styling without using this template. | ||
| Line 24: | Line 24: | ||
<pre><nowiki> | <pre><nowiki> | ||
{{flatlist| | {{flatlist| | ||
* | * cat | ||
* | * dog | ||
* | * horse | ||
* | * cow | ||
* | * sheep | ||
* | * pig | ||
}} | }} | ||
</nowiki></pre> | </nowiki></pre> | ||
{{flatlist| | {{flatlist| | ||
* | * cat | ||
* | * dog | ||
* | * horse | ||
* | * cow | ||
* | * sheep | ||
* | * pig | ||
}} | }} | ||
| Line 45: | Line 45: | ||
<pre><nowiki> | <pre><nowiki> | ||
{{flatlist}} | {{flatlist}} | ||
* | * cat | ||
* | * dog | ||
* | * horse | ||
* | * cow | ||
* | * sheep | ||
* | * pig | ||
{{endflatlist}} | {{endflatlist}} | ||
</nowiki></pre> | </nowiki></pre> | ||
{{flatlist}} | {{flatlist}} | ||
* | * cat | ||
* | * dog | ||
* | * horse | ||
* | * cow | ||
* | * sheep | ||
* | * pig | ||
{{endflatlist}} | {{endflatlist}} | ||
| Line 66: | Line 66: | ||
<pre><nowiki> | <pre><nowiki> | ||
{{flatlist| | {{flatlist| | ||
# | # first | ||
# | # second | ||
# | # third | ||
# | # fourth | ||
# | # fifth | ||
# | # sixth | ||
}} | }} | ||
</nowiki></pre> | </nowiki></pre> | ||
{{flatlist| | {{flatlist| | ||
# | # first | ||
# | # second | ||
# | # third | ||
# | # fourth | ||
# | # fifth | ||
# | # sixth | ||
}} | }} | ||
===Technical details=== | ===Technical details=== | ||
| Line 95: | Line 88: | ||
===See also=== | ===See also=== | ||
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox|| | <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox|| | ||
Latest revision as of 01:57, 12 February 2014
Usage
{{Flatlist}} starts a horizontal list, such as:
- cat
- dog
- horse
- cow
- sheep
- pig
The bottom margin is inherited from the current container. Normally this will be 0.5em.
For navigation boxes using {{navbox}}, one can set |listclass=hlist, and achieve the same styling without using this template.
For image captions, * markup does not work, so consider using {{hlist}} instead.
Examples
{{flatlist|
* cat
* dog
* horse
* cow
* sheep
* pig
}}
- cat
- dog
- horse
- cow
- sheep
- pig
- Alternative syntax
{{flatlist}}
* cat
* dog
* horse
* cow
* sheep
* pig
{{endflatlist}}
- cat
- dog
- horse
- cow
- sheep
- pig
- Syntax for ordered lists
{{flatlist|
# first
# second
# third
# fourth
# fifth
# sixth
}}
- first
- second
- third
- fourth
- fifth
- sixth
Technical details
This template uses the .hlist CSS class defined in 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 all browsers, notably Internet Explorer 6 and 7. In these cases, JavaScript in Common.js generates the interpuncts and parentheses.
