Answers for "js center text in div"

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
1

how to center a text element

It's okay bro use text-align: center; or justify-content with flexbox it's a lifesaver
Posted by: Guest on March-04-2021

Browse Popular Code Answers by Language