Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #put #text #center #div
ADD COMMENT
Topic
Name
9+6 =