CSS - scroll-padding-bottom



CSS scroll-padding-bottom property specifies the bottom offset of the scroll snap area of an element.

Possible Values

  • <length> − A length value is a numeric value, such as px, em, percentage.

Applies to

All the HTML elements.

DOM Syntax

object.style.scrollPaddingBottom = "length";

CSS Scroll Padding Bottom - Zero Value

The following example demonstrates how to use the scroll-padding-bottom property to make sure that there is no padding at the bottom of the container −

<html>
<head>
<style>
   .scroll-container {
      width: 350px;
      height: 200px;
      overflow-x: hidden;
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
      scroll-padding-bottom: 0;
   }
   .scrolling-section1,
   .scrolling-section2,
   .scrolling-section3 {
      width: 350px;
      height: 200px;
      scroll-snap-align: end;
   }
   .scrolling-section1 {
      background-color: rgb(220, 235, 153);
   }
   .scrolling-section2 {
      background-color: rgb(230, 173, 218);
   }
   .scrolling-section3 {
      background-color: rgb(119, 224, 210);
   }
</style>
</head>
<body>
   <h3>Scroll the content using the scrollbar arrows to see the effect.</h3>
   <div class="scroll-container">
      <div class="scrolling-section1">scroll-padding-bottom: 0</div>
      <div class="scrolling-section2">scroll-padding-bottom: 0</div>
      <div class="scrolling-section3">scroll-padding-bottom: 0</div>
   </div>
</body>
</html>

CSS Scroll Padding Bottom - Length Value

The following example demonstrates how to use scroll-padding-bottom property adds a padding at the bottom of the scrollable container −

<html>
<head>
<style>
   .scroll-container {
      width: 350px;
      height: 200px;
      overflow-x: hidden;
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
      scroll-padding-bottom: 25px;
   }
   .scrolling-section1,
   .scrolling-section2,
   .scrolling-section3 {
      width: 350px;
      height: 200px;
      scroll-snap-align: end;
   }
   .scrolling-section1 {
      background-color: rgb(220, 235, 153);
   }
   .scrolling-section2 {
      background-color: rgb(230, 173, 218);
   }
   .scrolling-section3 {
      background-color: rgb(119, 224, 210);
   }
</style>
</head>
<body>
   <h3>Scroll the content using the scrollbar arrows to see the effect.</h3>
   <div class="scroll-container">
      <div class="scrolling-section1">scroll-padding-bottom: 25px</div>
      <div class="scrolling-section2">scroll-padding-bottom: 25px</div>
      <div class="scrolling-section3">scroll-padding-bottom: 25px</div>
   </div>
</body>
</html>
Advertisements