Last active
August 28, 2017 17:47
-
-
Save zachleat/c135c079f802934006978e2257086cc3 to your computer and use it in GitHub Desktop.
Typinator Automations for CSS em and rem values
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ems | |
--- | |
Abbreviation: ;ems | |
Formula: {{size=?Size}}{{parentsize=?Parent Size<16>}}{{#size/parentsize}}em; /* {{#size}}px /{{#parentsize}} */ | |
Sample output: 0.75em; /* 12px /16 */ | |
Rems | |
---- | |
Abbreviation: ;rems | |
Formula: {{size=?Size}}{{parentsize=?Parent Size<16>}}{{#size/parentsize}}rem; /* {{#size}}px /{{#parentsize}} */ | |
Sample output: 0.75rem; /* 12px /16 */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment