overscroll-behavior-inline
has been used to make it so that when the scroll boundaries of the yellow inner box are reached, the whole page does not begin to scroll.
--- title: overscroll-behavior-inline slug: Web/CSS/overscroll-behavior-inline tags: - CSS - CSS ボックスモデル - CSS 論理的プロパティ - CSS プロパティ - NeedsExample - リファレンス - overscroll-behavior-inline - recipe:css-property browser-compat: css.properties.overscroll-behavior-inline translation_of: Web/CSS/overscroll-behavior-inline --- {{CSSRef}} **`overscroll-behavior-inline`** は CSS のプロパティで、スクロール領域のインライン方向の境界に達したときのブラウザーの挙動を設定します。 全体的な説明は {{cssxref("overscroll-behavior")}} を参照してください。 ```css /* キーワード値 */ overscroll-behavior-inline: auto; /* default */ overscroll-behavior-inline: contain; overscroll-behavior-inline: none; /* グローバル値 */ overscroll-behavior-inline: inherit; overscroll-behavior-inline: initial; overscroll-behavior-inline: revert; overscroll-behavior-inline: unset; ``` ## 構文 `overscroll-behavior-inline` プロパティは、次の値の一覧のうち一つのキーワードで指定します。 ### 値 - `auto` - : スクロールの末端における既定の振る舞いが通常通りに発生します。 - `contain` - : この値が設定された要素の内部では、スクロールの末端における既定の振る舞いが見られますが、隣接するスクロール領域に対するスクロール連鎖はありません。例えば、基底となる要素はスクロールしません。 - `none` - : 隣接するスクロール領域に対するスクロール連鎖はなく、スクロールの末端における既定の振る舞いが抑制されます。 ## 公式定義 {{cssinfo}} ## 形式文法 {{csssyntax}} ## 例
overscroll-behavior-inline
has been used to make it so that when the scroll boundaries of the yellow inner box are reached, the whole page does not begin to scroll.