1 min readJul 14, 2019
Footnote: Global Styles Should be Avoided
There are some styles that are truly global, such as the infamous:
html, body {
padding: 0;
margin: 0;
}
I don’t have a problem with styles like the above. Since a class name isn’t being created, you avoid most of the problems of global class names.