Random Stuff
Random notes and thoughts that may or may not be of use to someone.
Tuesday, March 14, 2017
Align text centered vertically
Awesome, but doesn't work on older browsers:
.parent {
display: flex;
align-items: center;
}
Works on older browsers:
.parent {
display: table;
}
.child {
display: table-cell;
vertical-align: middle;
}
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)