MediaWiki:Common.css

From Unreal Tournament 2004 MiA Wiki
Revision as of 17:10, 19 February 2026 by Piglet (talk | contribs) (Created page with "Adds space between list items without affecting line height: .mw-parser-output ul li, .mw-parser-output ol li { margin-bottom: 0.8em; Adjust this value for more or less space: } Optional: Removes the extra gap from the very last item in a list: .mw-parser-output ul li:last-child, .mw-parser-output ol li:last-child { margin-bottom: 0; }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Adds space between list items without affecting line height */
.mw-parser-output ul li, 
.mw-parser-output ol li {
    margin-bottom: 0.8em; /* Adjust this value for more or less space */
}

/* Optional: Removes the extra gap from the very last item in a list */
.mw-parser-output ul li:last-child, 
.mw-parser-output ol li:last-child {
    margin-bottom: 0;
}