Skip to content

Instantly share code, notes, and snippets.

@timgit
Created September 2, 2014 21:29
Show Gist options
  • Save timgit/d94283312098763aaee1 to your computer and use it in GitHub Desktop.
Save timgit/d94283312098763aaee1 to your computer and use it in GitHub Desktop.
A Pen by Tim Jones.
<div>Header</div>
<div class="wrapper">
<div class="line"></div>
<div class="box">something</div>
<div class="box">something</div>
<div class="box">something</div>
</div>
<div>Footer</div>
.wrapper {
position:relative;
}
.line {
position: absolute;
z-index: -1;
top: 0;
bottom: 0;
left: 50%;
border-left: 1px dashed #ccc;
}
.box {
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
margin: 20px;
background-color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment