<!DOCTYPE html>
<html>
<head>
<style>
#container {
scroll-snap-type: both mandatory;
width: 50%;
aspect-ratio: 1/1;
margin: 30px auto;
background-color: #fff;
white-space: nowrap;
overflow-x: scroll;
overflow-y: scroll;
border: solid black 2px;
scroll-padding-right: 30px;
}
#container > div {
display: inline-block;
height: 95%;
border-radius: 5%;
aspect-ratio: 1/1;
scroll-snap-align: end;
}
.green { background-color: lightgreen; }
.pink { background-color: lightpink; }
.blue { background-color: lightblue; }
.yellow { background-color: yellow; }
.grey { background-color: lightgray; }
</style>
</head>
<body>
<h3>CSS scroll-padding-right property, with snap in both directions.</h3>
<p>Scroll towards the middle of the container, stop scrolling, and see how the scroll-padding-right property creates a 30px distance from the right side of the container to the element.</p>
<div id="container">
<div class="green"></div>
<div class="pink"></div>
<div class="yellow"></div>