I would like to expand the black box (id: column-content) to the full height without scroll bars.
I try alot of things but nothing works.
Here is the url: http://goo.gl/I5f0u59
Any idea? Thanks.
I would like to expand the black box (id: column-content) to the full height without scroll bars.
I try alot of things but nothing works.
Here is the url: http://goo.gl/I5f0u59
Any idea? Thanks.
You can use the viewport units
vh
andvw
(viewport-height and viewport-width)in your case:
As you see, this will make your column content
box-sizing:border-box
this will prevent the container from becoming bigger than100vh
because of the padding-top and bottom. The content can still lead to an overflow. You will also have to set a new width, like shown above.The support for this usecase is ok See here