DEV Community

Discussion on: A Modern CSS Reset

Collapse
 
perpetual_education profile image
perpetual . education

It's pretty heavy-handed. If you want to get more granular - check out this type of selector.

article {
  h1 + p {
    margin-top: 20px;
 } 
}