css - How to make a horizontal scrolling carousel using flexbox? - Stack Overflow

PHOTO EMBED

Tue Sep 26 2023 06:26:13 GMT+0000 (Coordinated Universal Time)

Saved by @hirsch #html #css

.container {
   display: flex;
   flex-wrap: nowrap;
   overflow-x: auto;
   -webkit-overflow-scrolling: touch;
   -ms-overflow-style: -ms-autohiding-scrollbar; 
 }
.item {
  flex: 0 0 auto; 
}
content_copyCOPY

create carousel

https://stackoverflow.com/questions/40559629/how-to-make-a-horizontal-scrolling-carousel-using-flexbox