下面有更多 "亲自试一试" 示例。
这个scroll-padding-bottom
属性指定从容器底部到子元素上的捕捉位置的距离。
捕捉位置是当您停止滚动时子元素在容器中卡入到位的位置。捕捉位置设置为scroll-snap-align
属性,但也可能受到 CSS 属性的影响direction
和writing-mode
。
笔记:仅当捕捉位置位于子元素的底部时,此属性才有效。
来看看效果scroll-padding-bottom
属性,scroll-snap-align
必须在子元素上设置属性,并且scroll-padding-bottom
和scroll-snap-type
必须在父元素上设置属性。
表中的数字指定完全支持该属性的第一个浏览器版本。
Property | |||||
---|---|---|---|---|---|
scroll-padding-bottom | 69.0 | 79.0 | 68.0 | 14.1 | 56.0 |
scroll-padding-bottom: auto|
value|initial|inherit;
Value | Description |
---|---|
auto | Default value. The browser calculates the padding |
length | Specifies scroll-padding-bottom in px, pt, cm, etc. Negative values are not allowed. Read about length units |
% | Specifies the padding in percent of the width of the containing element |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
这个scroll-padding-bottom
属性可以在具有捕捉行为的图片库中使用,将图片推送到固定元素上方:
#container {
scroll-padding-bottom: 30px;
}
这个scroll-padding-bottom
当在两个方向上设置捕捉行为时,也可以在容器上设置属性。垂直滚动到下一个元素查看效果:
#container {
scroll-padding-bottom: 30px;
}
捕捉位置必须放置在子元素的底部scroll-padding-bottom
属性来工作。在这个例子中writing-mode
属性将子元素的捕捉位置从底部更改为左侧。有了这样的代码scroll-padding-bottom
属性不再起作用:
#container {
writing-mode: vertical-rl;
scroll-padding-bottom: 30px;
}
#container > div {
scroll-snap-align: end none;
}
亲自试一试 »
CSS方向属性:CSS 方向属性
CSS 滚动对齐属性:CSS 滚动对齐属性
CSS 滚动捕捉类型属性:CSS Scroll-snap-type 属性
CSS 写入模式属性:CSS 书写模式属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!