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


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


scroll-padding-block-end 属性用于一次将所有滚动填充设置到块维度中滚动容器或元素的末尾。端面为horizontal-tb 写入模式的底面,vertical-rl 或vertical-lr 写入模式的左侧或右侧。其中 horizontal-tb 代表水平从上到下,vertical-rl 或 vertical-lr 分别代表垂直从右到左和垂直从左到右。

用法:

scroll-padding-block-end:keyword_values

或者

scroll-padding-block-end:length_values

或者

scroll-padding-block-end:Global_Values

属性值:此属性接受上面提到和下面描述的 three-properties。



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

例:在此示例中,您可以通过滚动到示例内容的两个接口之间的中间点来查看 scroll-padding-block-end 属性的效果。

HTML


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

输出:

支持的浏览器:

  • Chrome
  • Firefox
  • Safari(不支持)
  • Edge
  • Opera
  • Internet Explorer(不支持)



相关用法


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