Skip to content

Instantly share code, notes, and snippets.

@gustaff-weldon
Created June 13, 2013 17:29
Show Gist options
  • Save gustaff-weldon/5775598 to your computer and use it in GitHub Desktop.
Save gustaff-weldon/5775598 to your computer and use it in GitHub Desktop.
Inline block
/**
* Inline block
*/
body {
padding-top: 3em;
text-align: center;
}
div {
background-color: #aaa;
display: inline-block;
width: 20%;
/* baseline | sub | super | top | text-top | middle | bottom | text-bottom | <percentage> | <length> | inherit */
vertical-align: text-top;
/* Fix for IE7 and below */
zoom: 1;
*display: inline;
}
.alpha {
height: 4.5em;
}
.beta {
height: 6em;
}
.delta {
height: 3em;
}
<div class="alpha"></div>
<div class="beta"></div>
<div class="delta"></div>
// alert('Hello world!');
{"view":"split","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