strictMath
See original GitHub issueI use codekit and can not set an option in the console, please tell me which file to change the settings “strictMath:true” ?
.oval {
-webkit-border-radius: 20px / 10px;
-moz-border-radius: 20px / 10px;
border-radius: 20px / 10px;
}
output:
.oval {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
Issue Analytics
- State:
- Created 10 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
StrictMath (Java Platform SE 8 ) - Oracle Help Center
The class StrictMath contains methods for performing basic numeric operations such as the elementary exponential, logarithm, square root, and trigonometric ...
Read more >What's the difference between java.lang.Math ... - Stack Overflow
StrictMath contains additional functions (hyperbolics etc.) which java.lang.Math doesn't, but is there a difference in the functions which ...
Read more >StrictMath - Android Developers
The class StrictMath contains methods for performing basic numeric operations such as the elementary exponential, logarithm, square root, and trigonometric ...
Read more >Java.lang.StrictMath class in Java | Set 1 - GeeksforGeeks
StrictMath Class methods helps to perform the numeric operations like square, square root, cube, cube root, exponential and trigonometric ...
Read more >Java.lang.StrictMath Class - Tutorialspoint
Java.lang.StrictMath Class, The java.lang.StrictMath class contains methods for performing basic numeric operations such as the elementary exponential, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Exactly. To summarize:
If strictMath is ON, you must wrap all math operations in parenthesis:
width: (100px / 5px);
If strict math is OFF, you do not need to wrap math operations:
width: 100px / 5px;
However, you will not be able to use the CSS3 font shorthand for setting font size and line height at the same time.Do NOT use
@options
, it is still only a feature request.to reiterate what @Soviut is saying,
@options
block is just a feature request atm. I would imagine that any feature that doesn’t exist would throw an error lol.