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
for
Hi! I'm having trouble doing the following. I've been skulking around, but found no solace.
@each $a in (2, 3, 4) { @for $b from 1 to $a { property: calc($a + $b); } }
This correctly returns property: 3 up until property: 8.
property: 3
property: 8
This, however, has trouble working as expected.
@each $a, $b in (1, 2, 3), (4, 5, 6) { @for $c from 1 to ($a + $b) { property: $c; } }
it is even possible? calc($a + $b) does not work either.
calc($a + $b)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi! I'm having trouble doing the following. I've been skulking around, but found no solace.
This correctly returns
property: 3
up untilproperty: 8
.This, however, has trouble working as expected.
it is even possible?
calc($a + $b)
does not work either.The text was updated successfully, but these errors were encountered: