DEV Community

Discussion on: How do you tackle CSS rendering differences?

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited

I am not even sure if not normalizing at all is safe in the latest browsers...

normalize.css is more safe for Markdown as well, and I think it is much less invasive and opinionated than classless CSS.

CSS resets might be better and smaller, as well as make CSS more manageable, if you don't work with Markdown.

I am currently not sure if I need normalize.css or CSS resets in shadow DOMs.

Collapse
 
madza profile image
Madza

For simpler projects I always do simple resets like resetting padding, border, box-sizing before doing anything.. for more complex layouts I would mostly bring in some extended css reset rules ;)