-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Description
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
AND strict
:
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()
?
Metadata
Metadata
Assignees
Labels
No labels