HTML 框架集垂直滚动在 IE8 上不起作用?

发布于 2024-09-28 21:03:03 字数 721 浏览 5 评论 0原文

我需要用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪漫之都 2024-10-05 21:03:03

IE8 有滚动=“是”的问题。使用 css 代替,应用于 centro.html 和 izquierda.html 的 body 标记:

<style type="text/css">
body  {
  overflow: scroll;
  /* In IE and CSS 3 you can even use these: */
  overflow-x: scroll;  /* Horizontal */
  overflow-y: scroll;  /* Vertical */
}

</style>

我认为我不需要添加您根本不应该使用框架布局。

IE8 has problems with scrolling="yes". Use css instead, applied to the body tag of centro.html and izquierda.html:

<style type="text/css">
body  {
  overflow: scroll;
  /* In IE and CSS 3 you can even use these: */
  overflow-x: scroll;  /* Horizontal */
  overflow-y: scroll;  /* Vertical */
}

</style>

I think I don't need to add that you shouldn't be using a frame layout at all.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文