I am having trouble setting the height of my iframe to 100%. Despite my efforts, I can't seem to make it work properly. What I really want is for the iframe to display without any scroll bars every time and have a height of 100%.
See below for the code snippet:
<div style="margin:0px;padding:0px;overflow:hidden">
<iframe src="https://example.com/" frameborder="0" style="overflow:hidden;height:100%;width:100%" height="100%" width="100%"></iframe>
</div>