DEV Community

[Comment from a deleted post]
Collapse
 
alaindet profile image
Alain D'Ettorre • Edited

If you're using SASS, you can even do this

.example {
  padding: 1rem 1.5rem;

  @media (min-width: 481px) {
    padding: 2rem 2.5rem;
  }

  @media (min-width: 961px) {
    padding: 3rem 3.5rem;
  }
}
Enter fullscreen mode Exit fullscreen mode

The best part is not repeating the selector and clearly specifying that anything more than mobile is secondary.