Cannot make a division into a property
See original GitHub issueThe following code does not work.
$gutterWidth = 20px; // in another file
selector {
margin-top: $gutterWidth / 2; // expectation: "10px", result "20px/2"
}
I’d to do this to have my thing working
selector {
$selectorMarginTop = $gutterWidth / 2;
margin-top: $selectorMarginTop;
}
If it’s a normal behavior, is weird…
Issue Analytics
- State:
- Created 11 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Dividing Property and Debt During Divorce - Nolo
In most (but not all) states, only your marital property will be divided in divorce, while you and your spouse will each keep...
Read more >Division Property Of Equality | Definition & Example - Tutors.com
The Division Property of Equality says that dividing both sides of an equation by the same number does not affect the equation. Another...
Read more >Unequal Distribution - 6 Ways Property Gets Divided ...
Marital and Divisible Property are subject to Equitable Distribution. Separate Property is not. Debts are also considered property and will be ...
Read more >Separating Property - American Bar Association
In a relatively small number of cases where the spouses cannot come to an agreement, the court will have to split the property....
Read more >Real Estate Property Division in Divorce | LawInfo
If you cannot agree, then the divorce is considered "contested," and the family judge will decide how the property should be divided.
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 Free
Top 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
How can it’s possible I’ve this issue :
$gutterWidth is completly valid (If I remove /2, it works). It’s declared like this
$gutterWidth = 20px
Resolved by replacing
sqrt()
tomath(x, 'sqrt')