Blossom Carousel Logo
Basic

Right to Left

Build a right-to-left carousel with the standard HTML dir attribute.
1
2
3
4
5
6
7
8
9
10
.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 200px;
  gap: 1rem;
}

.slide {
  width: 100%;
  aspect-ratio: 3 / 4;
}