CSS滚动条问题

发布于 2024-11-02 17:19:03 字数 186 浏览 3 评论 0原文

我在我的网站上使用了手风琴和幻灯片。 http://www.delightbranding.com/

当您点击“播放”时。由于某种原因,滚动条出现移动页面。

我猜我缺少某些 div 的设置高度。请帮忙。

I have used Accordion and Slideshow on my site.
http://www.delightbranding.com/

when you click Play. For some reason the scroll bar appears shifting the page.

Guess i am missing setting height for some div. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

海风掠过北极光 2024-11-09 17:19:03

这似乎是个坏苹果:

<div class="control-next">

当选择“Play”项时,该 div 会扩展到 HTML 内容下方,导致页面增大。

This one seems to be the bad apple:

<div class="control-next">

When the "Play" item is selected, this div expands below the HTML content, causing your page to grow.

梦行七里 2024-11-09 17:19:03

.control-next css 类中删除高度

.control-next {
    position:absolute;
    right:0;
    top:201px;
    bottom:201px;
    /*height:432px;*/
}

Remove the height from .control-next css class

.control-next {
    position:absolute;
    right:0;
    top:201px;
    bottom:201px;
    /*height:432px;*/
}
睫毛上残留的泪 2024-11-09 17:19:03

这种情况只发生在 IE9 中(我敢打赌所有版本的 IE),并且只有当我的浏览器窗口很短时才会发生。

我倾向于在我的 html 标签中添加一条 CSS 规则,

overflow-y: scroll;

该规则始终将滚动条放置在页面上,这样较长的内容就不会导致浏览器的行为不一致。

不确定这在这种情况下是否对您有帮助,但值得一试。

this is only happening for me in IE9 (I'd wager all versions of IE) and only when my browser window is short.

I tend to add a CSS rule to my html tag of

overflow-y: scroll;

Which places the scrollbar on the page always so that longer content doesn't make the browser behave inconsistently.

Not sure if this will help you in this case, but worth a try.

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