Open In App

CSS scroll-padding-inline-end Property

Last Updated : 29 Jul, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

The scroll-padding-inline-end property is used to set all the scroll padding to the end edge of a scroll element or container in the inline dimension at once. The end side is the right side for horizontal-tb writing mode and bottom or top side for vertical-lr or vertical-rl writing mode respectively. Where horizontal-tb stands for horizontal top-to-bottom, vertical-rl stands for vertical right-to-left and vertical-lr stands for vertical left-to-right.

Syntax

scroll-padding-inline-end: keyword_values

Or

scroll-padding-inline-end: length_values

Or

scroll-padding-inline-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 exp: px, em, vh, % etc.
  • Global_Values: This property refers to the global values like inherit, initial, unset, 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 a non-zero value as well as if the non-zero value is more appropriate.

Example: In this example, you can see the effect of scroll-padding-inline-end property by scrolling to a point partway between two of the interfaces of the example’s content.

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>

Output:

Supported Browsers:

  • Firefox 68 and above
  • Chrome 69 and above
  • Edge 79 and above
  • Opera 56 and above
  • Safari 15 and above


Next Article

Similar Reads