Skip to content

Instantly share code, notes, and snippets.

@jklm313
Created October 27, 2013 19:09
Show Gist options
  • Save jklm313/7186624 to your computer and use it in GitHub Desktop.
Save jklm313/7186624 to your computer and use it in GitHub Desktop.
Untitled
* {
margin: 0;
padding: 0;
box-sizing: border-box;
position: relative;
}
div {
/* for demo */
background: indianred;
color: white;
border: 1px solid;
}
.a {
float: left;
}
.c {
float: right;
}
.a, .c {
/* for demo */
width: 25%;
}
.b {
position: absolute;
right: 0; left: 0;
margin: auto;
/* for demo */
width: 50%;
height: 1000px;
}
<div class='b'>B</div>
<div class='a'>A</div>
<div class='c'>C</div>
// alert('Hello world!');
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment