Skip to content

Instantly share code, notes, and snippets.

@aereal
Last active October 30, 2015 16:24
Show Gist options
  • Save aereal/d401460d5238dd351a81 to your computer and use it in GitHub Desktop.
Save aereal/d401460d5238dd351a81 to your computer and use it in GitHub Desktop.
div {
width: 3px;
}
@media (min-width: 1px + 2px) { // !!!
body {
background-color: red;
}
}
div {
width: 3px;
}
@media (min-width: 3px) {
body {
background-color: red;
}
}
@x: 1px;
@y: 2px;
@z: @x + @y;
div {
width: @z;
}
@media (min-width: @z) {
body { background-color: red }
}
$x: 1px;
$y: 2px;
$z: $x + $y;
div {
width: $z;
}
@media (min-width: $z) {
body { background-color: red }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment