CSS Horizontal Scroll Container
Preview
Code
<style>
.container{
display:flex;
overflow-x:auto;
gap:10px;
width:220px;
}
.item{
min-width:80px;
height:60px;
background:#e0f2fe;
display:flex;
align-items:center;
justify-content:center;
}
</style>
<div class="container">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
</div>