溢出:自动导致滚动/滚动条显示在 Safari 中

发布于 2024-11-02 14:22:11 字数 1740 浏览 0 评论 0原文

我有一个容器 div (#columnsOne) 设置为 920 像素 + 38 像素填充 + 2 像素边框,总共 960 像素宽。

(#columnsOne) 使用 CSS“overflow: auto;”垂直扩展并包含其中的所有内容。

这适用于所有浏览器,以垂直扩展 div,并在 Firefox、Chrome 和 IE7/8 上正确显示水平宽度。然而,在 Safari 上,会出现水平滚动,并向右侧滚动约 600px 的空白区域。

起初我以为我可能将边距/填充设置错误,这就是它可能正确扩展的原因,但我不可能在那里有 600px 的额外空间。

关于为什么会发生这种情况有什么想法吗?

http://www.timetoplaymag.com/giveaway/daily/

屏幕截图(新用户,所以我不能在这里发帖): http://www.timetoplaymag.com/stacko/

许多编辑试图将代码放在这里,新手,抱歉

 <div class="columnsOne">

        <div class="sectionLeft">

            image/name of giveaway are here

        </div>

        <div class="sectionRight">

          sign in form here

        </div>

    </div>


#columnsOne, .columnsOne {
clear: both;
width: 958px;
margin-right: auto;
margin-left: auto;
margin-top: 10px;
margin-bottom: 20px;
background-color: #FFFFFF;
height: auto;
border: 1px solid #77787b;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
padding: none;
overflow: auto;
}   


#columnsOne .sectionLeft, .columnsOne .sectionLeft {
float: left;
height: auto;
width: 590px;
background-color: #FFFFFF;
overflow: auto;
margin-top: 0px;
margin-right: 20px;
margin-bottom: 0px;
margin-left: 0px;
padding-top: 19px;
padding-right: 19px;
padding-bottom: 19px;
padding-left: 19px;
}

#columnsOne .sectionRight, .columnsOne .sectionRight {
height: auto;
width: 270px
padding: 0px;
margin: 0px;
overflow: auto;
padding-top: 19px;
padding-right: 19px;
padding-bottom: 19px;
padding-left: 19px;
}

I have a container div (#columnsOne) set up at 920px + 38px padding + 2px border for a total of 960px wide.

(#columnsOne) uses CSS "overflow: auto;" to expand vertically and contain everything inside of it.

This works on all browsers to expand the div vertically, and also displays the horizonal width correctly on Firefox, Chrome, and IE7/8. However, on Safari, a horizontal scroll appears, and scrolls about 600px of blank space to the right.

At first I thought I might have the margin/padding set wrong, and that's why it might be expanding right, but there is no way I have 600px of extra space there.

Any thoughts as to why this might occur?

http://www.timetoplaymag.com/giveaway/daily/

Screen shots (new user, so I can't post on here): http://www.timetoplaymag.com/stacko/

many edits trying to get the code in here, newbie, sorry

 <div class="columnsOne">

        <div class="sectionLeft">

            image/name of giveaway are here

        </div>

        <div class="sectionRight">

          sign in form here

        </div>

    </div>


#columnsOne, .columnsOne {
clear: both;
width: 958px;
margin-right: auto;
margin-left: auto;
margin-top: 10px;
margin-bottom: 20px;
background-color: #FFFFFF;
height: auto;
border: 1px solid #77787b;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
padding: none;
overflow: auto;
}   


#columnsOne .sectionLeft, .columnsOne .sectionLeft {
float: left;
height: auto;
width: 590px;
background-color: #FFFFFF;
overflow: auto;
margin-top: 0px;
margin-right: 20px;
margin-bottom: 0px;
margin-left: 0px;
padding-top: 19px;
padding-right: 19px;
padding-bottom: 19px;
padding-left: 19px;
}

#columnsOne .sectionRight, .columnsOne .sectionRight {
height: auto;
width: 270px
padding: 0px;
margin: 0px;
overflow: auto;
padding-top: 19px;
padding-right: 19px;
padding-bottom: 19px;
padding-left: 19px;
}

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

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

发布评论

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

评论(2

陪我终i 2024-11-09 14:22:11

您可以在overflow auto之后设置overflow-x:hidden;,并且在safari上至少会应用该规则。

You can set overflow-x:hidden; after overflow auto, and on safari at least that rule will be applied.

没有伤那来痛 2024-11-09 14:22:11

我不确定 overflow:auto; 是此处使用的正确解决方案 - 您可能需要阅读浮动以及它们如何控制文档流。

但是,我确实注意到,当 .sectionright 上禁用 width 属性时,多余的空间就会消失。

I'm not sure overflow:auto; is the correct solution to be using here - you may want to read up on floats and how they control document flow.

However, I do notice when the width property is disabled on .sectionright, the extra space disappears.

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