bork75
The Team
- Регистрация
- 21 Июн 2008
- Сообщения
- 1.455
- Реакции
- 734
Этот html код выводит инфрейм с прокруткой, убрав прокрутку при переходе по страницам содержимое в фрэме будет отображена на половину
вот решение без скриптов
HTML:
<style>
* {margin:0; padding:0;}
.iframe-html {position:relative;padding-bottom:56.25%;height:0;overflow:hidden}
.iframe-html iframe {position:absolute;top:0;left:0;width:100%;height:100%; height: calc(100% - 40px)}
</style>
<div class="iframe-html">
<iframe width="100%" height="100%" frameborder="0" src="http://nic.ru" name="fff" align="left" border="0"></iframe>
</div>
Другой вариант
HTML:
<style>
* {
margin:0;
padding:0;
}
html {
height: 100%;
}
body {
height: 100%;
position: relative;
overflow: hidden;
}
.a {width:100%; height:100%;}
iframe {width:100%; height:100%; border:none;}
.block_iframe {margin-top:200px; width:100%; height:100%; height: calc(100% - 200px);}
</style>
<div class="a">
<div class="block_iframe">
<iframe class="iframe-content" frameborder="0" src="http://nic.ru" name="fff" align="left" border="0"></iframe>
</div>
</div>