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
相關用法
- CSS transition-property用法及代碼示例
- CSS table-layout用法及代碼示例
- CSS text-align用法及代碼示例
- CSS border-top-width用法及代碼示例
- CSS isolation屬性用法及代碼示例
- CSS border-inline-start-style屬性用法及代碼示例
- CSS column-rule-width用法及代碼示例
- CSS word-spacing用法及代碼示例
- CSS animation-delay用法及代碼示例
- CSS margin-top用法及代碼示例
- CSS grid屬性用法及代碼示例
- CSS font-size-adjust用法及代碼示例
- CSS visibility屬性用法及代碼示例
- CSS Display屬性用法及代碼示例
- CSS grid-template-columns用法及代碼示例
- CSS height屬性用法及代碼示例
- CSS transform-origin用法及代碼示例
- CSS animation-name用法及代碼示例
- CSS flex-wrap用法及代碼示例
注:本文由純淨天空篩選整理自thacker_shahid大神的英文原創作品 CSS scroll-padding-block-start Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。