I am trying to deploy on iframe on my website. Iframe is the only deployment method available for me (for technical reasons).
This is my deployment code:
<iframe name="Add an Asset" title="Add an Asset" src="https://c0abf873.caspio.com/dp/896060006294dfe2bf154556bccc" width=100% height="100vh">Sorry, but your browser does not support frames.</iframe>
The iframe works fine in the width (at 100%), but the height only seems to grow about 50% of what it needs. I see a vertical scrollbar that is unnecessary.I have also tried height=100% but this doesn't work at all.
I also tried this in the Custom CSS with no better results:
iframe {
width: 100vw;
height: 100vh;
}
Is there something I am missing here?
Phil