mirror of
https://github.com/necolas/normalize.css.git
synced 2024-12-25 15:14:19 +00:00
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.
This commit is contained in:
parent
fc091cce15
commit
8415c42d21
@ -347,3 +347,11 @@ template {
|
|||||||
[hidden] {
|
[hidden] {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default list style to "outside" in Chrome
|
||||||
|
*/
|
||||||
|
|
||||||
|
li {
|
||||||
|
list-style-position: outside;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user