Template:Flatlist/doc: Difference between revisions
Tag: Reverted |
Tag: Manual revert |
||
Line 182: | Line 182: | ||
* [[Alpine skiing at the 1964 Winter Olympics]] | * [[Alpine skiing at the 1964 Winter Olympics]] | ||
}} | }} | ||
== Technical details == | |||
This template uses the <code>.hlist</code> [[Cascading Style Sheets|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 [[interpunct]]s 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. | |||
{| class="wikitable" | |||
! Wikitext | |||
! Expanded template | |||
! HTML | |||
|- style="vertical-align:top;" | |||
| <pre> | |||
{{flatlist| | |||
* cat | |||
* dog | |||
* horse | |||
* cow | |||
* sheep | |||
* pig | |||
}} | |||
</pre> | |||
| {{nowiki2|tag=pre| | |||
{{flatlist| | |||
* cat | |||
* dog | |||
* horse | |||
* cow | |||
* sheep | |||
* pig | |||
}} | |||
}} | |||
| <syntaxhighlight lang="html"> | |||
<div class="hlist"> | |||
<ul><li>cat</li> | |||
<li>dog</li> | |||
<li>horse</li> | |||
<li>cow</li> | |||
<li>sheep</li> | |||
<li>pig</li></ul> | |||
</div> | |||
</syntaxhighlight> | |||
|} | |||
== See also == | == See also == |