I\'m looking for a way to vertically center the container div inside the jumbotron and to set it in the middle of the page.
container
jumbotron
The .jum
.jum
Tested in IE, Firefox, and Chrome.
.parent-container { position: relative; height:100%; width: 100%; } .child-container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
Header Text Some Text
Found on https://css-tricks.com/centering-css-complete-guide/