We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--math
Per a gitter discussion:
--math=(always|no-division|parens|strict|strict-legacy) -m=...
--math=(always|no-division|parens|strict|strict-legacy)
-m=...
always:
always
height: (5px + 5px) + 2px;
height: 12px;
width: 10px + 1;
width: 11px;
width: (10px + 1);
font: 16 / 4;
font: 4;
font: (16 / 4);
no-division:
no-division
parens AND strict:
parens
strict
height: 10px + 2px;
strict-legacy:
strict-legacy
What about calc()?
calc()
The text was updated successfully, but these errors were encountered:
@calvinjuarez I went with parens-all and parens-division - see PR - #3274
parens-all
parens-division
Sorry, something went wrong.
Closing just so we can keep the discussion in one place (in PR)
No branches or pull requests
Per a gitter discussion:
--math=(always|no-division|parens|strict|strict-legacy)
-m=...
always
:height: (5px + 5px) + 2px;
→height: 12px;
width: 10px + 1;
→width: 11px;
width: (10px + 1);
→width: 11px;
font: 16 / 4;
→font: 4;
font: (16 / 4);
→font: 4;
no-division
:height: (5px + 5px) + 2px;
→height: 12px;
width: 10px + 1;
→width: 11px;
width: (10px + 1);
→width: 11px;
font: 16 / 4;
→font: 16 / 4;
font: (16 / 4);
→font: 4;
parens
ANDstrict
:height: (5px + 5px) + 2px;
→height: 10px + 2px;
width: 10px + 1;
→width: 10px + 1;
width: (10px + 1);
→width: 11px;
font: 16 / 4;
→font: 16 / 4;
font: (16 / 4);
→font: 4;
strict-legacy
:height: (5px + 5px) + 2px;
→height: (5px + 5px) + 2px;
width: 10px + 1;
→width: 10px + 1;
width: (10px + 1);
→width: 11px;
font: 16 / 4;
→font: 16 / 4;
font: (16 / 4);
→font: 4;
Some Questions to Consider:
What about
calc()
?The text was updated successfully, but these errors were encountered: