Skip to content

Instantly share code, notes, and snippets.

@JeroenVdb
Created November 4, 2015 09:04
Show Gist options
  • Save JeroenVdb/332217a688cb4be444d1 to your computer and use it in GitHub Desktop.
Save JeroenVdb/332217a688cb4be444d1 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; // Error!
background-color: red;
}
.container {
height: 300px;
width: 250px;
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