Skip to content

Instantly share code, notes, and snippets.

@JeroenVdb
Last active November 4, 2015 11:21
Show Gist options
  • Select an option

  • Save JeroenVdb/5dc01b10b96e2c4382fc to your computer and use it in GitHub Desktop.

Select an option

Save JeroenVdb/5dc01b10b96e2c4382fc to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="container">
I'm a container'
</div>
// ----
// libsass (v3.2.5)
// ----
.container {
height: 300px;
width: 300px - 50px; // OK!
width: 300px - -50px; // OK!
width: 300px-50px; // Error!
background-color: red;
}
.container {
height: 300px;
width: 250px;
width: 350px;
width: 300px-50px;
background-color: red;
}
<div class="container">
I'm a container'
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment