For vertical centering, make the wrapper of the div equal to display-table , and the child element is display:table-cell with vertical-align:middle . Then horizontal centering can be done using text-align:center;
Try CSS:
.header { height: 600px; display:table; width:100%; } .homeImageText { height:100%; display:table-cell; vertical-align:middle; text-align:center; }
source share