Created
October 16, 2015 20:55
-
-
Save melissamcewen/8a770500ee6269cc4243 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
<!DOCTYPE html> | |
<html lang="de"> | |
<head> | |
</head> | |
<body> | |
<div id="div-1">1</div> | |
<div id="div-2">2</div> | |
<div id="div-3">3</div> | |
<div id="div-4">4</div> | |
</body> | |
</html> | |
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) | |
// ---- | |
@import "breakpoint"; | |
@import "singularitygs"; | |
@include add-grid(4); | |
#div-1 { | |
@include isolation-span(2, 1, left); | |
background-color: red; | |
} | |
#div-2 { | |
@include isolation-span(2, 1, left); | |
background-color: blue; | |
} | |
#div-3 { | |
@include isolation-span(2, 1, left); | |
background-color: yellow; | |
} | |
#div-4 { | |
@include isolation-span(2, 3, right); | |
background-color: green; | |
} |
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
#div-1 { | |
width: 47.36842%; | |
float: left; | |
margin-right: -100%; | |
margin-left: 0; | |
clear: left; | |
background-color: red; | |
} | |
#div-2 { | |
width: 47.36842%; | |
float: left; | |
margin-right: -100%; | |
margin-left: 0; | |
clear: left; | |
background-color: blue; | |
} | |
#div-3 { | |
width: 47.36842%; | |
float: left; | |
margin-right: -100%; | |
margin-left: 0; | |
clear: left; | |
background-color: yellow; | |
} | |
#div-4 { | |
width: 47.36842%; | |
float: right; | |
margin-left: 0; | |
margin-right: 0; | |
clear: right; | |
background-color: green; | |
} |
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
<!DOCTYPE html> | |
<html lang="de"> | |
<head> | |
</head> | |
<body> | |
<div id="div-1">1</div> | |
<div id="div-2">2</div> | |
<div id="div-3">3</div> | |
<div id="div-4">4</div> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment