HTML 框架集垂直滚动在 IE8 上不起作用?
我需要用 HTML 做一个框架集,我发现垂直滚动在 IE8 上不显示,但在 Firefox 中运行得很好。
为什么垂直滚动在 IE 上不起作用?我该怎么做才能让它像在 Firefox 中一样工作?
代码是这样的:
<frameset rows="121,*" cols="*" framespacing="3" frameborder="yes" border="3" bordercolor="#009933">
<frame src="arriba.html" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="135,*" framespacing="3" frameborder="yes" border="3" bordercolor="#009933">
<frame src="izquierda.html" name="leftFrame" scrolling="YES" noresize>
<frame src="centro.html" name="mainFrame" scrolling="YES" noresize>
</frameset>
</frameset>
izquierda.html和cenhtro.html中的scrolling =“yes”不起作用。
i need to do a frameset with HTML and I'm seeing that vertical scroll doesn't show on IE8, but it works perfect in Firefox.
Why vertical scroll doesn't work on IE? what can I do for do it works like in Firefox?
The code is this:
<frameset rows="121,*" cols="*" framespacing="3" frameborder="yes" border="3" bordercolor="#009933">
<frame src="arriba.html" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="135,*" framespacing="3" frameborder="yes" border="3" bordercolor="#009933">
<frame src="izquierda.html" name="leftFrame" scrolling="YES" noresize>
<frame src="centro.html" name="mainFrame" scrolling="YES" noresize>
</frameset>
</frameset>
the scrolling="yes" from izquierda.html and cenhtro.html doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IE8 有滚动=“是”的问题。使用 css 代替,应用于 centro.html 和 izquierda.html 的 body 标记:
我认为我不需要添加您根本不应该使用框架布局。
IE8 has problems with scrolling="yes". Use css instead, applied to the body tag of centro.html and izquierda.html:
I think I don't need to add that you shouldn't be using a frame layout at all.