The rule "Remove the margin on nested lists in Chrome, Edge, and Safari" appears in sanitize.css:
|
/** |
|
* Remove the margin on nested lists in Chrome, Edge, and Safari. |
|
*/ |
|
|
|
:where(dl, ol, ul) :where(dl, ol, ul) { |
|
margin: 0; |
|
} |
Since Chromium and WebKit already have that rule in their UA stylesheets, I think it can be removed.
Also mentioned in csstools/normalize.css#27.
The rule "Remove the margin on nested lists in Chrome, Edge, and Safari" appears in sanitize.css:
sanitize.css/sanitize.css
Lines 73 to 79 in 09f98b4
Since Chromium and WebKit already have that rule in their UA stylesheets, I think it can be removed.
Also mentioned in csstools/normalize.css#27.