Normalize.css: Suggestion: reset - ul, ol, li, menu and dir

Created on 11 Jul 2019  路  3Comments  路  Source: necolas/normalize.css

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;
}

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...

All 3 comments

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...

Was this page helpful?
0 / 5 - 0 ratings