I am fighting with a bootstrap container which needs to get displayed in 100% heigth.
Example CodePen:
[https://codepen.io/anon/pen/OYPdgv][1]
Can anybode tell me whats going wrong with it? Has anybody a hint for me?
Regards n00n
I am fighting with a bootstrap container which needs to get displayed in 100% heigth.
Example CodePen:
[https://codepen.io/anon/pen/OYPdgv][1]
Can anybode tell me whats going wrong with it? Has anybody a hint for me?
Regards n00n
You have set <body>
on 100% height but you need <html>
with 100% height yet:
html {
height: 100%;
}
edited source: https://codepen.io/anon/pen/arzMaq