当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


CSS scroll-padding-block属性用法及代码示例


scroll-padding-block属性用于立即将所有滚动填充设置为块尺寸中滚动容器或元素的开始和结束。该属性是scroll-padding-block-start和scroll-padding-block-end属性的简写。

因此,scroll-padding值代表定义滚动捕捉区域的起点,该区域用于将框捕捉到捕捉端口。

用法:

scroll-padding-block:keyword_values

/* Or */

scroll-padding-block:length_values
 
/* Or */

scroll-padding-block:Global_Values

属性值:该属性接受上面提到并在下面描述的three-properties:

  • length_values:此属性引用以长度单位定义的值。例如:px,em,vh等
  • keyword_values:此属性引用以诸如auto之类的单位定义的keyword_values。通常,默认情况下会将其设置为0px,但是如果非零值更合适,它也可以是非零值。
  • Global_Values:此属性引用全局值,例如Inherit,Initial,unset等。

例:在此示例中,通过滚动到示例内容的“interfaces”中的两个之间的一个点,可以看到scroll-padding-block的效果。



HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        .geek { 
              width:275px; 
              height:300px; 
              border:solid red; 
              color:white; 
              display:flex; 
              justify-content:center; 
              align-items:center; 
              font-size:50px; 
              scroll-snap-align:start none; 
        } 
  
        .GeeksforGeeks { 
              width:300px; 
              height:300px; 
              border:2px solid green; 
              overflow-x:hidden; 
              overflow-y:auto; 
              white-space:nowrap; 
              scroll-snap-type:y mandatory; 
        } 
    </style> 
</head> 
  
<body> 
    <div class="GeeksforGeeks" 
        style="scroll-padding-block:20px;"> 
        <div class="geek" style= 
              "background-color:darkgreen;"> 
               Geeks 1 
        </div> 
  
        <div class="geek" style= 
              "background-color:rgb(129, 245, 21);"> 
               for 1 
        </div> 
  
        <div class="geek" style= 
              "color:green;"> 
               Geeks 2 
        </div> 
  
        <div class="geek" style= 
              "background-color:rgb(115, 223, 43);"> 
               for 2 
        </div> 
  
        <div class="geek" style= 
              "color:green;"> 
               Geeks 3 
        </div> 
  
        <div class="geek" style= 
              "color:black;"> 
               for 3 
        </div> 
    </div> 
</body> 
  
</html>

输出:

支持的浏览器:

  • Chrome
  • Firefox
  • Edge
  • Opera

相关用法


注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 CSS scroll-padding-block Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。