• Stars
    star
    198
  • Rank 192,830 (Top 4 %)
  • Language
    CSS
  • Created almost 13 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

rem() is a Sass mixin that converts pixel values to rem values for whatever property is passed to it.

rem() is a Sass mixin that converts pixel values to rem values for whatever property is passed to it. It returns two lines of code — one of the regular pixel values (for some older browsers), and another with the converted rem values (for everyone else). Special thanks to Chris Epstein (http://chriseppstein.github.com) and Martin Bavio (http://martinbavio.com) for the help and code!

Sample input:

.element {
  @include rem('padding',10px 0 2px 5px);
}

Sample output:

.element {
  padding: 10px 0 2px 5px;
  padding: 1rem 0 0.2rem 0.5rem;
}