开发者

how to set iframe height to 100% with javascript

开发者 https://www.devze.com 2023-01-08 20:26 出处:网络
how to set iframe height to 100% with javascri开发者_运维知识库pt Example : http://mkb.ma/5fHere is the CSS for the iframe that page:

how to set iframe height to 100% with javascri开发者_运维知识库pt Example : http://mkb.ma/5f


Here is the CSS for the iframe that page:

#mkbnavbar iframe#srcpage {
  height:90%;
  margin:0;
  padding:0;
  width:100%;
  z-index:10;
}

And remaining 10% is given to bar at the top.


He is actually using CSS to do this on this page:

#mkbnavbar iframe#srcpage {
height: 90%;
width:100%;
z-index: 10;
margin: 0; padding: 0;
  -webkit-box-sizing: border-box;

}
0

精彩评论

暂无评论...
验证码 换一张
取 消