iFrame в DIV с высотой / шириной 100% - PullRequest
0 голосов
/ 31 января 2019

Я хотел бы использовать iFrame в Content-DIV, чтобы избежать постоянной загрузки навигации.

Можно ли включить туда iFrame, который имеет полную высоту / полную ширину во втором DIV?

<div style="position:fixed;width:190px;height:1500px;background:#951b24;float:left;z-index:1000;padding:25px>

Navigation

</div>

<div style="position:absolute;top:25px;left:265px;width:auto;height:auto">
Content
</div>

1 Ответ

0 голосов
/ 31 января 2019

Вы это имели в виду?

<div style="position:fixed;width:190px;height:1500px;background:#951b24;float:left;z-index:1000;padding:25px">

Navigation

</div>

<div style="position:absolute;top:25px;left:265px;width:calc(100% - 265px);height:100%;">
<iframe style="width: 100%; height: 100%;" src="https://www.youtube.com/embed/yfoY53QXEnI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...