Created
October 14, 2014 12:29
-
-
Save stephanpavlovic/1e3ce0bf0a9f8c1de9aa to your computer and use it in GitHub Desktop.
With float
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='wrapper'> | |
<div class='box'>Hi</div> | |
<div class='box'>Hi</div> | |
<div class='box'>Hi</div> | |
<div class='box'>Hi</div> | |
</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
// ---- | |
// Sass (v3.4.5) | |
// Compass (v1.0.1) | |
// ---- | |
.box | |
width: 100px | |
height: 100px | |
background: black | |
.wrapper | |
border: 1px solid red | |
overflow: hidden | |
.box | |
float: left | |
margin-right: 10px |
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
.box { | |
width: 100px; | |
height: 100px; | |
background: black; | |
} | |
.wrapper { | |
border: 1px solid red; | |
overflow: hidden; | |
} | |
.wrapper .box { | |
float: left; | |
margin-right: 10px; | |
} |
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='wrapper'> | |
<div class='box'>Hi</div> | |
<div class='box'>Hi</div> | |
<div class='box'>Hi</div> | |
<div class='box'>Hi</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment