elad2412 / the-new-css-reset

The New Simple and Lighter CSS Reset
https://elad2412.github.io/the-new-css-reset/
MIT License
2.26k stars 229 forks source link

<menu> also has list style in Safari #15

Closed Noleli closed 3 years ago

Noleli commented 3 years ago

Safari has default list styles for <menu>, so accounting for those here. See before and after screenshots:

<h1>UL</h1>
<ul>
    <li>Item</li>
    <li>Item</li>
</ul>

<h1>menu</h1>
<menu>
    <li>Item</li>
    <li>Item</li>
</menu>

Before:

before

After:

after
elad2412 commented 3 years ago

Merged