scroll-padding-inline屬性用於立即將所有滾動填充設置為內聯維度中滾動元素或容器的開始和結束。該屬性是scroll-padding-inline-start和scroll-padding-inline-end屬性的簡寫。
開始和結束側的選擇取決於寫入模式。對於horizontal-tb寫入模式,開始側和結束側分別是左側和右側。類似地,對於verticle-rl或verticle-lr寫入模式,開始和結束側分別是頂側和底側,其中horizontal-tb代表從上到下的水平,verticle-rl是從右到左的頂點,而verticle-lr是從左到右的頂點。
用法:
scroll-padding-block-end:keyword_values
或者
scroll-padding-block-end:length_values
或者
scroll-padding-block-end:Global_Values
屬性值:該屬性接受上麵提到的和下麵描述的三個屬性。
- length_values:此屬性引用以長度單位定義的值。例如:px,em,vh,%等。
- keyword_values:此屬性引用以諸如auto之類的單位定義的keyword_values。通常,默認情況下會將其設置為0px,但如果非零值更合適,也可以為非零值。
- Global_Values:此屬性引用全局值,例如Inherit,Initial,unset等。
例:在此示例中,通過滾動到示例內容的“interfaces”中的兩個之間的一個點,可以看到scroll-padding-inline的效果。
HTML
<!DOCTYPE html>
<html>
<head>
<style>
.img {
width:275px;
height:300px;
scroll-snap-align:none start;
}
.GeeksforGeeks {
width:300px;
height:300px;
border:2px solid red;
overflow-x:auto;
overflow-y:hidden;
white-space:nowrap;
scroll-snap-type:x mandatory;
}
</style>
</head>
<body>
<div class="GeeksforGeeks"
style="scroll-padding-inline:100px;">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131449/img5.jpeg"
class="img">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131450/img6-300x82.png"
class="img">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131452/img4-300x167.png"
class="img">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131450/img6-300x82.png"
class="img">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131449/img5.jpeg"
class="img">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131452/img4-300x167.png"
class="img">
</div>
</body>
</html>
輸出:
支持的瀏覽器:
- Firefox
- Chrome
- Edge
- Opera
- Safari(不支持)
- Internet Explorer(不支持)
相關用法
- 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 grid-template-columns用法及代碼示例
- CSS height屬性用法及代碼示例
- CSS transform-origin用法及代碼示例
- CSS animation-name用法及代碼示例
- CSS flex-wrap用法及代碼示例
- CSS align-content用法及代碼示例
- CSS page-break-before屬性用法及代碼示例
- CSS empty-cells用法及代碼示例
注:本文由純淨天空篩選整理自thacker_shahid大神的英文原創作品 CSS scroll-padding-inline Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。