Open In App

CSS scroll-padding-inline Property

The scroll-padding-inline property is used to set all the scroll padding to the start and end of a scroll element or container in the inline dimension at once. This property is shorthand for the scroll-padding-inline-start and scroll-padding-inline-end property.

The selection of the start and end sides depends upon the writing mode. The start side and end side are left and right sides respectively for horizontal-tb writing mode. Similarly, start and end side are top and bottom sides respectively for vertical-rl or vertical-lr writing mode where horizontal-tb stands for horizontal top-to-bottom, vertical-rl is the vertical right to left and vertical-lr is the vertical left-to-right.



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.

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




<!DOCTYPE html>
<html>
 
<head>
    <style>
        .img {
            width: 275px;
            height: 300px;
            scroll-snap-align: none start;
        }
 
        .GeeksforGeeks {
            width: 300px;
            height: 300px;
            border: 2px solid red;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            scroll-snap-type: x mandatory;
        }
    </style>
</head>
 
<body>
 
    <div class="GeeksforGeeks"
        style="scroll-padding-inline: 100px;">
 
        <img src=
            class="img">
        <img src=
            class="img">
        <img src=
            class="img">
        <img src=
            class="img">
        <img src=
            class="img">
        <img src=
            class="img">
    </div>
</body>
 
</html>

Output:

Supported Browsers:


Article Tags :