目录

CSS overscroll-behavior-y 属性


示例

关闭可滚动 <div> 元素的滚动链接:

#yellowDiv {
  overscroll-behavior-y: contain;
}
亲自试一试 »

定义和用法

这个overscroll-behavior-y当您尝试在 y 方向上滚动越过滚动边界时,属性用于关闭元素上的滚动链接或过度滚动功能。

滚动链接是指在元素上过度滚动会导致父元素上的滚动行为。这是默认行为。

过度滚动可供性是当尝试滚动超出滚动边界时给用户的反馈。例如,当移动设备滚动到页面顶部之外时,视觉反馈和页面刷新通常会发生。

默认值: 汽车
遗传:
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.overscrollBehaviorY="none"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
overscroll-behavior-y 63.0 18.0 * 59.0 16.0 50.0

* 在 Microsoft Edge 中,属性值“none”被视为“contain”,这是不正确的。



CSS 语法

overscroll-behavior-y: auto|contain|none|initial|inherit;

属性值

Value Description
auto Allows scroll chaining and overscroll affordance behavior. This is default
contain Allows overscroll affordance behavior, but not scroll chaining.
none Does not allow overscroll affordance or scroll chaining behavior.
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS 过度滚动行为属性:CSS 过度滚动行为属性

CSS overscroll-behavior-block 属性:CSS Overscroll-behavior-block 属性

CSS overscroll-behavior-inline 属性:CSS Overscroll-behavior-inline 属性

CSS overscroll-behavior-x 属性:CSS Overscroll-behavior-x 属性

CSS 滚动行为属性:CSS 滚动行为属性

CSS 滚动边距属性:CSS 滚动边距属性

CSS 滚动填充属性:CSS 滚动填充属性

CSS 滚动对齐属性:CSS 滚动对齐属性