According to the following code, the <iframe>
does not adjust vertically even if setting the height
attribute to 100%.
<div class="container">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Panel</h3>
</div>
<div class="panel-body">
<iframe width="100%" height="100%" src="http://superlp.com.br"frameborder="0"></iframe>
</div>
</div>
</div>
Why does this happen? How to solve?