Learn how to create an image gallery with a horizontal scrollbar with CSS.
Use the horizontal scrollbar to see the other images:
<div class="scroll-container">
<img src="img_5terre.jpg" alt="Cinque Terre">
<img src="img_forest.jpg" alt="Forest">
<img src="img_lights.jpg" alt="Northern Lights">
<img src="img_mountains.jpg" alt="Mountains">
</div>
div.scroll-container {
background-color: #333;
overflow: auto;
white-space: nowrap;
padding: 10px;
}
div.scroll-container img {
padding: 10px;
}
Try it Yourself »
Tip: Go to our HTML Images Tutorial to learn more about images.
Tip: Go to our CSS Style Images Tutorial to learn more about how to style images.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!