scroll-padding-inline-start 属性用于一次性将所有滚动填充设置为内联维度中滚动元素或容器的起始边。起始侧为 horizontal-tb 书写模式的左侧,verticle-lr 或 verticle-rl 书写模式的顶部或底部,其中 horizontal-tb 代表水平从上到下,verticle-rl 或 verticle-lr 代表垂直从右到左到左和-分别对。
用法:
scroll-padding-inline-start:keyword_values
或者
scroll-padding-inline-start:length_values
或者
scroll-padding-inline-start:Global_Values
属性值:该属性接受上面提到的和下面描述的三个属性。
- length_values:此属性是指使用长度单位定义的值。例如:px、em、vh、% 等。
- Global_Values:此属性引用全局值,例如Inherit,Initial,unset等。
- keyword_values:此属性是指使用 auto 等单位定义的 keyword_values。通常这将默认设置为 0px 但它可以是非零值以及非零值是否更合适。
例:在此示例中,您可以通过滚动到示例内容的 “interfaces” 两者之间的中间点来查看 scroll-padding-inline-start 的效果。
HTML
<!DOCTYPE html>
<html>
<head>
<style>
.geeks {
width:270px;
height:300px;
scroll-snap-align:none start;
}
.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-start:90px;">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131449/img5.jpeg"
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/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
- 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 Display属性用法及代码示例
- CSS grid-template-columns用法及代码示例
- CSS height属性用法及代码示例
- CSS transform-origin用法及代码示例
- CSS animation-name用法及代码示例
- CSS flex-wrap用法及代码示例
注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 CSS scroll-padding-inline-start Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。