gpt4 book ai didi

html - 隐藏后 X 轴不消失,仍然适用于移动 View

转载 作者:行者123 更新时间:2023-11-28 01:23:23 25 4
gpt4 key购买 nike

所以我最近在做一个网站,遇到了一些小错误。其中一个确实是修复中的问题,另一个我将在另一个论坛上讨论。

x 轴没有隐藏,即使隐藏在 CSS 中,这是一个真正的问题。它适用于笔记本电脑,但不适用于移动 View 。

body {
overflow-x: hidden;
overflow-y: auto;
max-width: 100%;
}

我这个问题的网址是:

http://www.theeventlister.com/landingpage/events/uk/boardmasters.html

最佳答案

问题是下面的代码:

     body, html {
height: 100%;
}

覆盖此代码:

    body {
font-family: 'Roboto', sans-serif;
position: fixed;
font-weight: 400;
font-size: 1.125rem;
margin: 0;
padding: 0;
overflow-x: hidden;
overflow-y: auto;
}

简单的加上overflow-x:hidden;到第一个代码,它将起作用:

body, html {
height: 100%;
overflow-x: hidden;
}

关于html - 隐藏后 X 轴不消失,仍然适用于移动 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51360520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com