DEV Community

Discussion on: How to Center a div Horizontally and Vertically

Collapse
 
unclecheap profile image
UncleCHEAP

Let's not forget yet a 4th way. No need for "positioning."

.parent {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.child {
    display: inline-block;
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
coderamrin profile image
Amrin

thanks for sharing