elad2412 / the-new-css-reset

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

Summary marker is still present #79

Closed fabulousgk closed 1 year ago

fabulousgk commented 1 year ago

This bit does not seem actually to accomplish the removal of the summary marker as intended:

 ::marker {
    content: initial;
  }
Screen Shot 2023-10-01 at 3 59 08 PM

However, adding summary to this does:


 ol, ul, menu, summary {
    list-style: none;
  }