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
Give the container class
.container{ height: 100vh; width: 100vw; display: flex; }
Give the div that's inside the container:
align-content: center;
All the content inside this div will show up in the middle of the page.