垂直滚动条问题

发布于 2024-11-27 09:51:47 字数 243 浏览 0 评论 0原文

http://smiths-heimann.az/?page=7&id =1&subid=1 看看这个。垂直滚动条的结束箭头在哪里? http://prntscr.com/2hleg

http://smiths-heimann.az/?page=7&id=1&subid=1 check this out. Where's the end arrow of vertical scroll bar? http://prntscr.com/2hleg

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

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

发布评论

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

评论(3

凡尘雨 2024-12-04 09:51:47

通过设置 padding-bottom: 183px 来更新“#container”容器;你将能够看到卷轴的结尾。

还可以通过设置 padding: 10px 0px 0px 0px 来更新“.content”样式;

update the "#container" container by making padding-bottom: 183px; and you will be able to see the end of the scroll.

Also update the ".content" style by making padding: 10px 0px 0px 0px;

知足的幸福 2024-12-04 09:51:47

删除 #container 中的溢出:

#container { 
min-width: 980px;
/* overflow-x: auto; */
/* overflow-y: auto; */
padding-bottom: 100px;
width: 100%;
}

Remove overflow from #container:

#container { 
min-width: 980px;
/* overflow-x: auto; */
/* overflow-y: auto; */
padding-bottom: 100px;
width: 100%;
}
素衣风尘叹 2024-12-04 09:51:47

使用以下内容更新您的样式,将显示滚动:

#container {
    clear: left;
    min-width: 980px;
    padding-bottom: 100px;
    width: 100%;
}

Update your style with the following and the scroll will be shown:

#container {
    clear: left;
    min-width: 980px;
    padding-bottom: 100px;
    width: 100%;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文