Answers for "place text in center of a contaner"

0

put text in center of a div

html, body {
    height: 100%;
}
.parent {
    width: 100%;
    height: 100%;
    display: table;
    text-align: center;
}
.parent > .child {
    display: table-cell;
    vertical-align: middle;
}
Posted by: Guest on February-26-2021

Code answers related to "place text in center of a contaner"

Browse Popular Code Answers by Language