Px to em and Px to rem sizing
// Base font size in px
$base-font-size: 16;
// Px to em sizing
@function calc-em($size, $context: $base-font-size) {
@return ($size / $context) + em;
}
// Px to rem sizing with px fallout
@mixin font-size($size) {
font-size: $size + px;
font-size: ($size / $base-font-size) + rem;
}
Written by Ka-Chun Chau
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Css
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#