Skip to content

Instantly share code, notes, and snippets.

@drublic
Created February 9, 2013 10:17
Show Gist options
  • Save drublic/4744771 to your computer and use it in GitHub Desktop.
Save drublic/4744771 to your computer and use it in GitHub Desktop.
Vertical centering
/**
* Vertical centering
*/
html,
body,
.a {
height: 200px;
}
.a {
border-top: 2px dashed #ccc;
border-bottom: 2px dashed #ccc;
}
span {
display: inline-block;
font-size: 100px;
background: #aaa;
}
input {
vertical-align: middle;
}
<div class="a">
<span>test</span>
<input>
</div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment