CSS - scroll-padding-block



CSS scroll-padding-block 是一个简写属性,它指定元素在块维度上的滚动填充。

可能的值

  • <length-percentage> − 一个有效的长度或百分比值,定义了从视口相应边缘向内的偏移量。

    <auto> − 由用户代理确定的从视口相应边缘向内的偏移量。

应用于

所有滚动容器的视口。

语法

scroll-padding-block = [ auto | <length-percentage> ]{1,2}

CSS scroll-padding-block - length 值

下面的例子演示了如何使用scroll-padding-block属性来设置div元素在块维度上的滚动填充的内边距,使用长度值 (30px)。

<html>
<head>
<style>
  #container {
      width: 50%;
      aspect-ratio: 3/1;
      padding: 40px 0;
      border: solid black 2px;
      overflow-x: hidden;
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
      scroll-padding-block: 30px;
  }

  .boxA {
      background-color: rgb(234, 234, 128);
      width: 85%;
      aspect-ratio: 3/1;
  }

  .boxB {
      background-color: lightgreen;
      width: 70%;
      aspect-ratio: 4/1;
  }

  .boxA, .boxB {
      margin: 2px;
      scroll-snap-align: start none;
  }
</style>
</head>
<body>
   <h3>CSS scroll-padding-block property.</h3>
   <p>Scroll-padding-block property sets the scroll padding of an element in the block dimension.</p>

   <div id="container">
      <div class="boxA"></div>
      <div class="boxB"></div>
      <div class="boxA"></div>
      <div class="boxB"></div>
      <div class="boxA"></div>
   </div>
</body>
</html>

CSS scroll-padding-block - 百分比值

下面的例子演示了如何使用scroll-padding-block属性来设置div元素在块维度上的滚动填充的内边距,使用百分比值 (60%)。

<html>
<head>
<style>
  #container {
      width: 50%;
      aspect-ratio: 3/1;
      padding: 40px 0;
      border: solid black 2px;
      overflow-x: hidden;
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
      scroll-padding-block: 60%;
  }

  .boxA {
      background-color: rgb(234, 234, 128);
      width: 85%;
      aspect-ratio: 3/1;
  }

  .boxB {
      background-color: lightgreen;
      width: 70%;
      aspect-ratio: 4/1;
  }

  .boxA, .boxB {
      margin: 2px;
      scroll-snap-align: start none;
  }
</style>
</head>
<body>
   <h3>CSS scroll-padding-block property.</h3>
   <p>Scroll-padding-block property sets the scroll padding of an element in the block dimension. Here the value is a percentage value (60%).</p>

   <div id="container">
      <div class="boxA"></div>
      <div class="boxB"></div>
      <div class="boxA"></div>
      <div class="boxB"></div>
      <div class="boxA"></div>
   </div>
</body>
</html>

CSS scroll-padding-block - auto 值

下面的例子演示了如何使用scroll-padding-block属性来设置div元素在块维度上的滚动填充的内边距,使用关键字值 (auto)。

<html>
<head>
<style>
  #container {
      width: 50%;
      aspect-ratio: 3/1;
      padding: 40px 0;
      border: solid black 2px;
      overflow-x: hidden;
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
      scroll-padding-block: auto;
  }

  .boxA {
      background-color: rgb(234, 234, 128);
      width: 85%;
      aspect-ratio: 3/1;
  }

  .boxB {
      background-color: lightgreen;
      width: 70%;
      aspect-ratio: 4/1;
  }

  .boxA, .boxB {
      margin: 2px;
      scroll-snap-align: start none;
  }
</style>
</head>
<body>
   <h3>CSS scroll-padding-block property.</h3>
   <p>Scroll-padding-block property sets the scroll padding of an element in the block dimension. Here the value given is auto.</p>

   <div id="container">
      <div class="boxA"></div>
      <div class="boxB"></div>
      <div class="boxA"></div>
      <div class="boxB"></div>
      <div class="boxA"></div>
   </div>
</body>
</html>

CSS scroll-padding-block - 相关属性

以下是与scroll-padding-block属性相关的CSS属性列表

属性 描述
scroll-padding-block-start 设置视口块维度起始边缘的偏移量。
scroll-padding-block-end 设置视口块维度结束边缘的偏移量。
广告