A Pen by Captain Anonymous on CodePen.
Created
December 29, 2014 01:38
-
-
Save lvwzhen/5166eb7f2a2c2a7a6864 to your computer and use it in GitHub Desktop.
pvExMo
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-full"> | |
<div class="left"></div> | |
<div class="middle"> | |
<div class="inner"> | |
</div> | |
</div> | |
<div class="right"></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
*{ | |
padding: 0; | |
margin: 0; | |
} | |
.container-full{ | |
padding: 0 30px; | |
min-width: 980px; | |
} | |
.left,.right{ | |
float: left; | |
background-color: red; | |
width: 200px; | |
height: 500px; | |
} | |
.right{ | |
background-color: green; | |
} | |
.middle{ | |
float: left; | |
width: 100%; | |
margin: 0 -200px; | |
height: 500px; | |
} | |
.middle .inner{ | |
margin: 0 200px; | |
background-color: #ccc; | |
height: 500px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment