<!DOCTYPE html>
<html>
<head>
<style>
#container {
width: 80%;
aspect-ratio: 2/1;
margin: auto;
border: solid black 2px;
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
scroll-snap-type: x mandatory;
scroll-padding-right: 0;
}
.blue {
background-color: lightblue;
height: 95%;
aspect-ratio: 3/2;
}
.green {
background-color: lightgreen;
height: 80%;
aspect-ratio: 4/3;
}
.blue, .green {
display: inline-block;
margin: 2px;
scroll-snap-align: end;
}
</style>
</head>
<body>
<h1>Change scroll-padding-right property with JavaScript</h1>
<p>Try first to scroll to see how the scroll snaps on end of elements on x-axis.</p>