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
<body> | |
<p> | |
The text in this paragraph DOES wrap: this is the DEFAULT behaviour. This is some text. This is some text. This is some text. | |
This is some text. This is some text. This is some text. | |
This is some text. This is some text. This is some text. | |
This is some text. This is some text. This is some text. | |
</p> | |
<p class="no-wrap"> |
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
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@mixin button($font-size, $bg) { | |
font-size: $font-size; | |
background: $bg; | |
} |
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
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$media-tablet: 'screen and (max-width:800px)'; | |
@media #{$media-tablet} { | |
p { | |
color: blue; |