--- title: overscroll-behavior-y slug: Web/CSS/overscroll-behavior-y tags: - CSS - CSS Box Model - CSS Property - Reference - overscroll-behavior-y - 'recipe:css-property' translation_of: Web/CSS/overscroll-behavior-y ---
overscroll-behavior-y
は CSS のプロパティで、スクロール領域の垂直方向の境界に達したときのブラウザーの挙動を設定します。
全体的な説明は {{cssxref("overscroll-behavior")}} を参照してください。
/* キーワード値 */ overscroll-behavior-y: auto; /* 既定値 */ overscroll-behavior-y: contain; overscroll-behavior-y: none; /* グローバル値 */ overscroll-behavior-y: inherit; overscroll-behavior-y: initial; overscroll-behavior-y: unset;
overscroll-behavior-y
プロパティは、次の値の一覧のうち一つのキーワードで指定します。
auto
contain
none
{{cssinfo}}
.messages { height: 220px; overflow: auto; overscroll-behavior-y: contain; }
完全な例と説明については、 {{cssxref("overscroll-behavior")}} を参照してください。
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName('CSS Overscroll Behavior', '#propdef-overscroll-behavior-y', 'overscroll-behavior-y')}} | {{Spec2('CSS Overscroll Behavior')}} |
{{Compat("css.properties.overscroll-behavior-y")}}