CSSOff is a competition for front-end developers to show off their skills in a no holds barred display of CSS and markup skills.
And from now on I’m a participant. Let’s fight! http://www.unmatchedstyle.com/cssoff/
CSSOff is a competition for front-end developers to show off their skills in a no holds barred display of CSS and markup skills.
And from now on I’m a participant. Let’s fight! http://www.unmatchedstyle.com/cssoff/
Just a little SASS helper to convert px to em during writing CSS.
@function px2em ($font_size, $base_font_size: 16) @return ($font_size / $base_font_size) + em
Usage:
article font-size: px2em(20)
Is compiled to:
article {
font-size: 1.25em;
}
and
article font-size: px2em(20,20)
Is compiled to:
article {
font-size: 1em;
}