I am currently trying to remove white space below my iframe when resizing. I am mainly using Bootstrap for CSS. The goal is to have the iframe take 100% of the page below the navbar.
Example of iframe being cut off and white space trailing
This is how I am calling the iframe:
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="site/index.html">
<p>Your browser does not support iframes.</p>
</iframe>
</div>
The only other element in the page is the navbar.
I have tried the following: Changing the iframe to display:block height and width:100% overflow:hidden overflow-y:hidden
Thank you.