当前位置:Gxlcms > html代码 > iframe框架如何适应不同分辨率的浏览器_html/css_WEB-ITnose

iframe框架如何适应不同分辨率的浏览器_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:14人阅读

asp.net 后台管理用iframe做的框架,但是在宽屏与窄屏之间显示的不是特别好,有很大差距,
这个是在窄屏下显示正常,宽屏下右边有一个空白,显的很不协调

以下是html代码:
<%----%><%----%>
隐藏菜单


回复讨论(解决方案)

宽度动态计算

你class给个菜单导航一个max-widht,别让他超出; 按道理来说你导航菜单给了固定值一般不会出现空白的 有可能是你其他样式的问题 。

我发现是右侧ifram宽度不能动态调整的原因,网上找了一些代码,不管用



问题解决了,代码贴出来,分享一下:
html代码如下,注意宽高要设为auto

隐藏菜单


输出至两个文本框 // document.form1.availHeight.value = winHeight; //document.form1.availWidth.value = winWidth; document.all("rightFrame").width = winWidth - 215; document.all("rightFrame").height = winHeight - 80; document.all("leftFrame").height = winHeight - 80;// alert(document.all("rightFrame").width +"-"+ winWidth); } findDimensions(); //调用函数,获取数值 window.onresize = findDimensions; //-->

人气教程排行