Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chrisnager/8343340 to your computer and use it in GitHub Desktop.
Save chrisnager/8343340 to your computer and use it in GitHub Desktop.
A Pen by Chris Nager.
<div class="vertically-centered">vertically centered</div>
.vertically-centered {
height: 256px;
overflow-x: hidden;
white-space: nowrap;
font-weight: bold;
font-size: 2.5em;
text-align: center;
text-overflow: ellipsis;
background-color: #eee;
}
.vertically-centered:before {
content: "";
height: 100%;
display: inline-block;
vertical-align: middle;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment