scroll-padding-right属性用于立即将所有填充设置在滚动容器或元素的右侧。为scroll-padding-right指定的值确定主要在快照滚动之外的页面中应保持可见的数量。
用法:
scroll-padding-right:keyword_values
或者
scroll-padding-right:length_values
或者
scroll-padding-right:Global_Values
属性值:该属性接受上面提到的和下面描述的三个属性。
- length_values:此属性指的是以长度单位exp定义的值:px,em,vh,%等。
- keyword_values:此属性引用以诸如auto之类的单位定义的keyword_values。通常,默认情况下会将其设置为0px,但如果非零值更合适,也可以为非零值。
- Global_Values:此属性引用全局值,例如Inherit,Initial,unset等。
例:下面的示例说明了scroll-padding-right属性。
HTML
<!DOCTYPE html>
<html>
<head>
<style>
.geek {
width:300px;
height:275px;
border:2px solid black;
scroll-snap-align:none end;
}
.GeeksforGeeks {
width:300px;
height:300px;
overflow-x:auto;
overflow-y:hidden;
white-space:nowrap;
scroll-snap-type:x mandatory;
}
</style>
</head>
<body>
<div class="GeeksforGeeks" style=
"scroll-padding-right:90px;">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131450/img6-300x82.png"
class="geek">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131449/img5.jpeg"
class="geek">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131450/img6-300x82.png"
class="geek">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131452/img4-300x167.png"
class="geek">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131450/img6-300x82.png"
class="geek">
</div>
</body>
</html>
输出:
支持的浏览器:
- Chrome
- Firefox
- 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-right Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。