Answers for "how to set iframe height and width dynamically html"

2

full width and height iframe

<body style="margin:0px;padding:0px;overflow:hidden">
    <iframe src="http://www.youraddress.com" frameborder="0" style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;height:100%;width:100%;position:absolute;top:0px;left:0px;right:0px;bottom:0px" height="100%" width="100%"></iframe>
</body>
Posted by: Guest on June-13-2020
1

set iframe height and width

#IFRAME_ID {
  width: 100%!important;
  height: 100%!important;
}
<iframe src="http://www.youraddress.com" id="IFRAME_ID"></iframe>
Posted by: Guest on February-18-2021

Code answers related to "how to set iframe height and width dynamically html"

Browse Popular Code Answers by Language