Google chrome Version 73.0.3683.86 User agent stylesheet
ul, menu, dir {
display: block;
list-style-type: disc;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 40px;
}
```css
ol {
display: block;
list-style-type: decimal;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 40px;
}
```css
li {
display: list-item;
text-align: -webkit-match-parent;
}
Are there differences among user agents that would justify an extensive normalization like this?
Thous stylesheets are applied by the browser.
Right which one though? How does this user agent sheet compare with other user agents? Generally this project aims to normalize browser inconsistencies...
Most helpful comment
Right which one though? How does this user agent sheet compare with other user agents? Generally this project aims to normalize browser inconsistencies...