Answers for "css align text in middle of div"

CSS
21

how to center text in css

.class {
	text-align: center;
}
Posted by: Guest on February-15-2020
7

center text in div container

text-align: center
Posted by: Guest on June-01-2020
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

Browse Popular Code Answers by Language