Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
#container {
  width: 50%;
  aspect-ratio: 2/3;
  margin: auto;
  border: solid black 2px;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
      
#container > img {
  width: 100%;
  margin: 2px;
  scroll-snap-align: start;
  scroll-margin-top: 30px;
}
</style>
</head>
<body>
<h3>CSS scroll-margin-top property.</h3>
<p>Drag the scrollbar vertically inside the photo gallery box, let go, and see the scroll-snap effect with snap position start and scroll-margin-top 30px.</p>
<div id="container">
  <img src="img_chania.jpg" alt="alley">
  <img src="img_forest_narrow.jpg" alt="bridge in jungle">
  <img src="img_mountains.jpg" alt="mountains">
  <img src="img_man_narrow.jpg" alt="man with camera">
  <img src="img_5terre.jpg" alt="Cinque Terre">
</div>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.php?filename=trycss_scroll-margin-top_with_images by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:38:12 GMT -->
</html>