/ Published in: CSS
Align a div vertically inside another div (variable height) (tl;dr)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#wrapper { display: flex; justify-content: center; } #inner { align-self: center; }