elad2412/the-new-css-reset

Summary marker is still present

Unique-Pixels opened this issue · 0 comments

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