Template:List style none: Difference between revisions

From Baldur's Gate 3 Wiki
Jump to navigation Jump to search
(Created page with "<includeonly><div class="bg3wiki-list-style-none">{{{1}}}</div></includeonly><noinclude>{{documentation|content= Use this to add the CSS style <code>list-style: none;</code> to a list, which disables the bullet points. This is useful for lists where each element already begins with some sort of icon, so the bullet points are visually unappealing. For example, consider the following listing of some common actions: <pre> * {{SAI|Dash}}: Gotta go fast * {{SAI|Throw}}: Ea...")
 
(No difference)

Latest revision as of 18:01, 21 March 2024

Template documentation

Use this to add the CSS style list-style: none; to a list, which disables the bullet points.

This is useful for lists where each element already begins with some sort of icon, so the bullet points are visually unappealing.

For example, consider the following listing of some common actions:

* {{SAI|Dash}}: Gotta go fast
* {{SAI|Throw}}: Eat a rock
* {{SAI|Jump}}: I'm a kangaroo

It's normally rendered as such:

The bullets are ugly, so you can do this instead:

{{list style none|
* {{SAI|Dash}}: Gotta go fast
* {{SAI|Jump}}: I'm a kangaroo
}}

Which is rendered as follows:

  • Dash Dash: Gotta go fast
  • Jump Jump: I'm a kangaroo