Skip to content

Instantly share code, notes, and snippets.

@runa-ichinose
Created April 21, 2015 02:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save runa-ichinose/677656112f6853ea91b7 to your computer and use it in GitHub Desktop.
Save runa-ichinose/677656112f6853ea91b7 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
.item {
width: calc(100% - 1px * 2);
}
$border: 1px;
.item {
width: calc(100% - $border * 2);
}
$border: 100px-1p* 2;
.item {
width: calc(#{$border});
}
$border: "100px - 1px * 2";
.item {
width: calc(#{$border});
}
@charset "UTF-8";
.item {
width: calc(100% - 1px * 2);
}
.item {
width: calc(100% - $border * 2);
}
.item {
width: calc(200px-1p);
}
.item {
width: calc(100px - 1px * 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment