Bottom Page Space Issue

0
We embed our mendix application with react application. We are facing more space issue at end of the page when give height as 450vh in embed page. We need auto increment and decrement the page based on the content. When we add any text box that time we need auto increment in page when we delete the text box that time we need auto decrement in page.Is there any possible way to achieve it?
asked
1 answers
0

Hi,

Please use responsive viewport height. it will be within the screen height. 

for example:

height: 100vh; 

or you can have a calculated height like below

height: calc( 100vh - 10%);

answered