Skip to content

Instantly share code, notes, and snippets.

@floster
Created February 18, 2016 15:21
Show Gist options
  • Save floster/419d2d206f097cef840f to your computer and use it in GitHub Desktop.
Save floster/419d2d206f097cef840f to your computer and use it in GitHub Desktop.
Vertical align with :after
.outer {
width: 200px;
height: 500px;
text-align: center;
background-color: #ffc;
}
.outer:after {
display: inline-block;
height: 100%;
vertical-align: middle;
content: "";
}
.inner {
display: inline-block;
width: 100px;
vertical-align: middle;
background-color: #fcc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment