Create Section that Is full screen both hight and width

How can I make a section that is full hight and width for all screen sizes and the content all be vertically aligned in the middle.

I currently am using height: 100vh; to make it full hight but just cant figure out how to make all the content in a row be vertically aligned.

Thanks in advance for your help.

Hey @bcoplin,

Please add a class to the rows where you want the content to be vertically centered then add this code in the Global CSS:


.vertical-align-content {
    display: flex;
    align-items: center;
}

The code above assumes that the class you add to the rows where you want the content to be in the middle is vertical-align-content.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.