9 ms·
CSS3's flex attribute solves that. It's the holy grail for modern web-interface-development. Vertical center text: .vertical-text { display: flex; flex-di
by mindhunter 12y ago
CSS3's flex attribute solves that. It's the holy grail for modern web-interface-development.
Vertical center text:
.vertical-text {
display: flex;
flex-direction: column;
justify-content: center;
}
(add ´align-items: center´for horizontal center)