Open In App

CSS scroll-padding-block Property

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

Hence, the scroll-padding values represent outsets that define the scroll snap area that is used for snapping the box to the snap port. 



Syntax:

scroll-padding-block: keyword_values

/* Or */

scroll-padding-block: length_values
 
/* Or */

scroll-padding-block: 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-block by scrolling to a point partway between two of the “interfaces” of the example’s content.




<!DOCTYPE html>
<html>
 
<head>
    <style>
        .geek {
              width: 275px;
              height:300px;
              border: solid red;
              color: white;
              display: flex;
              justify-content: center;
              align-items: center;
              font-size: 50px;
              scroll-snap-align: start none;
        }
 
        .GeeksforGeeks {
              width: 300px;
              height:300px;
              border: 2px solid green;
              overflow-x: hidden;
              overflow-y: auto;
              white-space: nowrap;
              scroll-snap-type: y mandatory;
        }
    </style>
</head>
 
<body>
    <div class="GeeksforGeeks"
        style="scroll-padding-block: 20px;">
        <div class="geek" style=
              "background-color:darkgreen;">
               Geeks 1
        </div>
 
        <div class="geek" style=
              "background-color:rgb(129, 245, 21);">
               for 1
        </div>
 
        <div class="geek" style=
              "color:green;">
               Geeks 2
        </div>
 
        <div class="geek" style=
              "background-color:rgb(115, 223, 43);">
               for 2
        </div>
 
        <div class="geek" style=
              "color: green;">
               Geeks 3
        </div>
 
        <div class="geek" style=
              "color:black;">
               for 3
        </div>
    </div>
</body>
 
</html>

Output:

Supported Browsers:


Article Tags :