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


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


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

用法:

scroll-padding-block-start:keyword_values

或者

scroll-padding-block-start:length_values

或者

scroll-padding-block-start:Global_Values

属性值:该属性接受上面提到的和下面描述的三个属性。



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

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

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;
            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-start:90px;">
 
        <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>

输出:

支持的浏览器:

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



相关用法


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