-1

On new, responsive projects, is there any good reason to use pixels for production environment (besides in media queries) if there are responsive units such as rem (and in conjunction with 62,5% trick)?

mhpreiman
  • 139
  • 2
  • 4
  • 13

1 Answers1

0

Yes, it makes sense. I use rem inside media queries and whenever i need a root based units (this is useful only if change the root font size). Then i use pixels when i need an absolute size.

Relative units are still useful. You don’t have to think that absolute units are “old”. They cover differents use cases.

Mattia Astorino
  • 1,396
  • 14
  • 18