當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。