CSS scroll-padding-block-end Property
The scroll-padding-block-end property is used to set all the scroll padding to the end of a scroll container or element in the block dimension at once. The end side is the bottom side for horizontal-tb writing mode and left or right side for vertical-rl or vertical-lr writing mode respectively. Where horizontal-tb stands for horizontal top-to-bottom and vertical-rl or vertical-lr stands for vertical right-to-left and vertical left-to-right respectively.
Syntax:
scroll-padding-block-end: keyword_values
Or
scroll-padding-block-end: length_values
Or
scroll-padding-block-end: Global_Values
Property values: This property accepts three-properties mentioned above and described below.
- length_values: This property refers to the values defined with length units. Ex: px, em, vh, % etc.
- keyword_values: This property refers to the keyword_values defined with units like auto. Generally this will be set to 0px by default but it can be non-zero value as well if the non-zero value is more appropriate.
- Global_Values: This property refers to the global values like inherit, initial, unset, etc.
Example: In this example, you can see the effect of scroll-padding-block-end property by scrolling to a point partway between two of the interfaces of the example’s content.
HTML
<!DOCTYPE html> < html > < head > < style > .geek { width: 275px; height: 300px; border: solid greenyellow; color: white; display: flex; justify-content: center; align-items: center; font-size: 50px; scroll-snap-align: end none; } .GeeksforGeeks { width: 300px; height: 300px; border: 2px solid green; text-align: center; overflow-x: hidden; overflow-y: auto; white-space: nowrap; scroll-snap-type: y mandatory; } </ style > </ head > < body > < div class = "GeeksforGeeks" style = "scroll-padding-block-end: 90px;" > < div class = "geek" style = "background-color:darkgreen;" > Geeks </ div > < div class = "geek" style = "background-color:rgb(129, 245, 21);" > for </ div > < div class = "geek" style = "color:green;" > Geeks </ div > < div class = "geek" style = "background-color:rgb(115, 223, 43);" > for </ div > < div class = "geek" style = "color: green;" > Geeks </ div > < div class = "geek" style = "color:black;" > for </ div > </ div > </ body > </ html > |
Output:
Supported Browsers:
- Chrome 69 and above
- Firefox 68 and above
- Safari 15 and above
- Edge 79 and above
- Opera 56 and above
Please Login to comment...