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

The meter is not visible #27

Closed navehsadeh closed 2 years ago

navehsadeh commented 2 years ago

The unset: all property hides the meter element. To solve this, you need to add a appearance: auto rule for meter only.

elad2412 commented 2 years ago

Added a patch, revert the appearance property - on version 1.4.6

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}