Last active
August 29, 2015 14:27
-
-
Save fractefactos/54b238d38e04942c1642 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
<h1>SASS RULZ!</h1> | |
<div class="altura">HEIGHT </div> | |
<div class="altura-otra">ANOTHER HEIGHT </div> | |
This file contains 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) | |
// ---- | |
$altura : 20; | |
.altura-full | |
{ | |
height: #{$altura}px; | |
} | |
.altura-otra | |
{ | |
height: #{100 - $altura}px; | |
} |
This file contains 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
.altura-full { | |
height: 20px; | |
} | |
.altura-otra { | |
height: 80px; | |
} |
This file contains 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
<h1>SASS RULZ!</h1> | |
<div class="altura">HEIGHT </div> | |
<div class="altura-otra">ANOTHER HEIGHT </div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment