Skip to content

Instantly share code, notes, and snippets.

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