Last active
November 4, 2015 11:21
-
-
Save JeroenVdb/5dc01b10b96e2c4382fc to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="container"> | |
| I'm a container' | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| .container { | |
| height: 300px; | |
| width: 300px - 50px; // OK! | |
| width: 300px - -50px; // OK! | |
| width: 300px-50px; // Error! | |
| background-color: red; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .container { | |
| height: 300px; | |
| width: 250px; | |
| width: 350px; | |
| width: 300px-50px; | |
| background-color: red; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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