Advertisement
Sadchenko

Разворачивание сайта во фрейме на всю высоту в браузере

Mar 8th, 2022
1,245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.32 KB | None | 0 0
  1. <style>
  2.     #ifr {
  3.     position: absolute;
  4.     top:0px;
  5.     left:0px;
  6.     width:100%;
  7. }
  8. </style>
  9. <script>
  10. window.onload=function() {
  11. document.getElementById("ifr").style.height=window.innerHeight+"px";
  12. }
  13. </script>
  14.  
  15. <iframe id="ifr" frameborder="0" src="http://tech-store.octemplates.net/" width="100%"></iframe>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement