作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
找到解决方案:添加新的 CSS 属性 overscroll-behavior-y: none;
See overscroll-behavior property
html {
margin: 0;
overscroll-behavior-y: none;
}
原始问题:
试图防止 Chrome 中的过度滚动。我尝试了多种解决方案,但没有任何帮助。这是我使用的 html 和正文 (CSS):
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box; /* width and height value includes content, padding and border not the margin */
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0,0,0,0); /* remove highlight on touch devices */
-webkit-tap-highlight-color: transparent;
-webkit-font-smoothing: antialiased;
-webkit-touch-callout: none; /* iOS Safari display callout information */
-webkit-text-size-adjust: 100%; /* prevent font scaling in landscape while allowing user zoom */
user-drag: none;
-webkit-user-drag: none; /* disable drag images */
}
html {
height: 100%;
overflow-y: scroll;
overflow-x: hidden !important;
}
body {
font-family: sans-serif;
font-weight: normal;
font-size: 1.25rem;
line-height: 1.1;
letter-spacing: 0.0125em;
text-align: left;
color: black;
min-height: 100%; /* for sticky footer */
display: flex; /* for sticky footer */
flex-direction: column; /* for sticky footer */
}
我试过的一个想法是这个 answer 7 years ago , 但它使浏览器的滚动条在固定标题后面,看起来很奇怪。
最佳答案
这是浏览器的默认行为,如果它自动滚动回 0 位置。与它无关。
关于css - 到达滚动边界时防止过度滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57892270/
我正在开发适用于 Wordpress 的 PSD,并面临着根据颜色过度对齐背景图像或相反的问题。 在桌面上一切都很好,但在移动设备上背景图像变小了(我使用了 background-size: 100%
在标准 Modelica 流体流量源中,通常指定流量或压力。例如,以下边界设置(P 表示压力边界,F 表示流量边界)通常会围绕管道组件: P - 管道 - P F - 管道 - P 但是,有时在同一侧
我正处于设计基于 Azure 的应用程序的早期阶段。考虑到我可能预期的需求的变化性,Azure 吸引我的地方之一是它的可扩展性。因此,我试图保持事物松散耦合,以便我可以在需要时添加实例。 我看到的关于
我与 Xcode 4 dot notation code sense problem 正好相反!点符号的代码完成不仅显示属性,还显示我的方法(在每个完成的左侧标记 P 或 M 分别指示它是属性还是方法
我是一名优秀的程序员,十分优秀!