Skip to content

Instantly share code, notes, and snippets.

@lvwzhen
Created December 29, 2014 01:38
Show Gist options
  • Save lvwzhen/5166eb7f2a2c2a7a6864 to your computer and use it in GitHub Desktop.
Save lvwzhen/5166eb7f2a2c2a7a6864 to your computer and use it in GitHub Desktop.
pvExMo
<div class="container-full">
<div class="left"></div>
<div class="middle">
<div class="inner">
</div>
</div>
<div class="right"></div>
</div>
*{
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