Hi,
I have the Hero section as Fullscreen but how can I align the content in the Middle or Bottom of the screen?
Thanks.
Hi,
I have the Hero section as Fullscreen but how can I align the content in the Middle or Bottom of the screen?
Thanks.
Hi There,
It could be done with the Flex Layout CSS.
$el {
display: flex;
align-items: center;
}
$el {
display: flex;
align-items: flex-end;
}
For more information, please take a look at this article:
https://philipwalton.github.io/solved-by-flexbox/demos/vertical-centering/
Hope it helps 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.