Looking to design a unique layout featuring a horizontal list of cards where 3 cards are displayed simultaneously, with the ability to horizontally scroll through the rest, like this:
https://i.sstatic.net/KgX27.png
While achieving this using CSS is straightforward, my goal is to implement it using Bootstrap. Bootstrap 4 introduces cards, inspired by material design, which seamlessly integrate into Bootstrap projects. Instead of cards, regular div
s can also be utilized for this example.
The challenge I'm facing involves creating a scrollable container for X number of cards (or divs), showing 3 at a time while allowing the overflow to be scrolled horizontally. Unsure on how to use Bootstrap to set the width of the cards (or divs) so that 3 are visible at once with the remaining ones positioned next to them on the right.