scroll-padding-inline-end 屬性用於一次將所有滾動填充設置為內聯維度中滾動元素或容器的結束邊。 horizontal-tb 寫入模式的端麵為右側,verticle-lr 或 verticle-rl 寫入模式的底部或頂部分別為。其中 horizontal-tb 代表水平從上到下,verticle-rl 代表垂直從右到左,verticle-lr 代表從左到右垂直。
用法:
scroll-padding-inline-end:keyword_values
或者
scroll-padding-inline-end:length_values
或者
scroll-padding-inline-end:Global_Values
屬性值:該屬性接受上麵提到的和下麵描述的三個屬性。
- length_values:此屬性是指使用長度單位 exp:px、em、vh、% 等定義的值。
- Global_Values:此屬性引用全局值,例如Inherit,Initial,unset等。
- keyword_values:此屬性是指使用 auto 等單位定義的 keyword_values。通常這將默認設置為 0px,但它可以是非零值,也可以是非零值更合適。
例:在此示例中,您可以通過滾動到示例內容的兩個接口之間的中間點來查看 scroll-padding-inline-end 屬性的效果。
HTML
<!DOCTYPE html>
<html>
<head>
<style>
.geeks {
width:300px;
height:270px;
scroll-snap-align:none end;
}
.GeeksforGeeks {
width:300px;
height:300px;
border:2px solid green;
overflow-x:auto;
overflow-y:hidden;
white-space:nowrap;
scroll-snap-type:x mandatory;
}
</style>
</head>
<body>
<div class="GeeksforGeeks" style=
"scroll-padding-inline-end:90px;">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131452/img8.jpeg"
class="geeks">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131449/img5.jpeg"
class="geeks">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131452/img4-300x167.png"
class="geeks">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131452/img8.jpeg"
class="geeks">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131449/img5.jpeg"
class="geeks">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131452/img4-300x167.png"
class="geeks">
</div>
</body>
</html>
輸出:
支持的瀏覽器:
- Firefox
- Chrome
- Edge
- Opera
注意:不支持 Internet Explorer 和 Safari。
相關用法
- 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-inline-end Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。