为什么我的页面这么宽?

发布于 2024-12-02 10:06:56 字数 234 浏览 0 评论 0原文

使用 Firefox 或 Chrome 查看我的网站:BehineHost

我刚刚设置并配置了“Nivo Slider”。之前一切都很顺利,但现在如果你用 Firefox 或 Chrome 打开页面,你会在浏览器底部看到一个大的水平滚动条。

我做了很多检查,但什么也没发现......
我该如何修复它?

Take a look at my website using Firefox or Chrome : BehineHost.

I just set up and configured "Nivo Slider". Before that all was going well, but now if you open the page with Firefox or Chrome, you'll see a large horizontal scrollbar at the bottom of the browser.

I did a lot of checks but found nothing...
How can I fix it?

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

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

发布评论

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

评论(1

陪你搞怪i 2024-12-09 10:06:56

文本缩进:-9999px,这就是原因。

导致它的类:

.nivo-controlNav a {
    background: url("images/bullets.png") no-repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    display: block;
    float: right;
    height: 19px;
    margin-right: 15px;
    margin-top: 30%;
    opacity: 0.5;
    position: relative;
    text-indent: -9999px;
    width: 17px;
    z-index: 9;
}

如果您仔细观察,您会在最右侧看到1 2 3

Text-indent : -9999px, that's why.

Class that cause it :

.nivo-controlNav a {
    background: url("images/bullets.png") no-repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    display: block;
    float: right;
    height: 19px;
    margin-right: 15px;
    margin-top: 30%;
    opacity: 0.5;
    position: relative;
    text-indent: -9999px;
    width: 17px;
    z-index: 9;
}

If you had looked more carefully, you would have seen the 1 2 3 on the far right.

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