From 8415c42d2104f4405a0b8dd56fa7e0d65255c766 Mon Sep 17 00:00:00 2001 From: Lex Nastin Date: Sun, 5 Jun 2022 11:33:39 +0100 Subject: [PATCH] Default list style to "outside" in Chrome As per MDN list-style-position should default to outside, but after some testing, every Chromium based browser defaults this to inside. In IE 11 and Firefox 101, it defaults to outside, as it should. --- normalize.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/normalize.css b/normalize.css index 192eb9ce4..df3f61151 100644 --- a/normalize.css +++ b/normalize.css @@ -347,3 +347,11 @@ template { [hidden] { display: none; } + +/** + * Default list style to "outside" in Chrome + */ + +li { + list-style-position: outside; +}