CSS - overscroll-behavior-x 属性



CSS 属性 `overscroll-behavior-x` 确定浏览器在到达滚动区域水平边界时执行的操作。

您可以参考`overscroll-behavior` 获取详细信息。

可能的值

CSS 属性 `overscroll-behavior-x` 定义为以下关键字之一。

  • auto − 默认滚动行为是正常的。

  • contain − 滚动行为仅在设置该值的元素中可见。不会对相邻元素设置滚动。

  • none − 没有滚动链式行为。避免默认的滚动溢出行为。

应用于

所有非替换块级元素和非替换内联块级元素。

语法

overscroll-behavior-x = contain | auto | none

CSS overscroll-behavior-x - contain 值

下面的示例演示了 `overscroll-behavior-x: contain` 的用法,它将水平滚动效果设置为包含且非连续的。

<html>
<head>
<style>
   main {
      height: 500px;
      width: 2000px;
      background-color: slateblue;
   }

   main > div {
      height: 300px;
      width: 500px;
      overflow: auto;
      position: relative;
      top: 100px;
      left: 100px;
      overscroll-behavior-x: contain;
   }

   div > div {
      height: 100%;
      width: 1500px;
      background-color: lightblue;
   }

   p {
      padding: 10px;
      background-color: rgba(0, 0, 150, 0.2);
      margin: 0;
      width: 300px;
      position: relative;
      top: 10%;
      left: 2%;
   }
</style>
</head>
<body>
   <h1>overscroll-behavior-x Property</h1>
   <main>
      <div>
      <div>
         <p>
         <b>overscroll-behavior-x</b> defines the horizontal scrolling area behavior.
         The value contain prevents the parent element getting scrolled. Thus preventing the 
         scrolling chain experience.
         </p>
      </div>
      </div>
   </main>
</body>
</html>

CSS overscroll-behavior-x - auto 值

下面的示例演示了 `overscroll-behavior-x: auto` 的用法,它将滚动效果设置为默认值,浏览器会在到达应用该元素的边界时决定是否滚动父元素。

<html>
<head>
<style>
   main {
      height: 500px;
      width: 2000px;
      background-color: slateblue;
   }

   main > div {
      height: 300px;
      width: 500px;
      overflow: auto;
      position: relative;
      top: 100px;
      left: 100px;
      overscroll-behavior-x: auto;
   }

   div > div {
      height: 100%;
      width: 1500px;
      background-color: lightblue;
   }

   p {
      padding: 10px;
      background-color: rgba(0, 0, 150, 0.2);
      margin: 0;
      width: 300px;
      position: relative;
      top: 10%;
      left: 2%;
   }
</style>
</head>
<body>
   <h1>overscroll-behavior-x Property</h1>
   <main>
      <div>
      <div>
         <p>
         <b>overscroll-behavior-x: auto</b> defines the horizontal scrolling area behavior.
         The value auto behaves like the normal scrolling behavior. It is the default value.
         </p>
      </div>
      </div>
   </main>
</body>
</html>
广告