Created
February 14, 2012 13:10
-
-
Save h4/1826677 to your computer and use it in GitHub Desktop.
Плавающая модель
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
/** | |
* Плавающая модель | |
*/ | |
body { | |
height: 100%; | |
} | |
.box { | |
height:100px; | |
width:100px; | |
margin:20px; | |
background:orange; | |
} | |
.container { | |
/*padding:20px;*/ | |
margin:20px; | |
background:silver; | |
min-height:100px; | |
clear:both; | |
overflow:hidden; | |
} | |
.container-float-inline .box { | |
float:left; | |
} | |
.container-float-clear .box { | |
float:left; | |
clear:both; | |
} |
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 container-normal"> | |
<div class="box"></div> | |
<div class="box"></div> | |
</div> | |
<div class="container container-float-inline"> | |
<div class="box"></div> | |
<div class="box"></div> | |
<div class="box"></div> | |
</div> | |
<div class="container container-float-clear"> | |
<div class="box"></div> | |
<div class="box"></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
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment