Horizontally scrollable list of cards in Bootstrap
Update 2021 Bootstrap 5 The flexbox utils still exist in Bootstrap 5: https://codeply.com/p/Vo13PAGO7e <div class=”container-fluid py-2″> <h2 class=”font-weight-light”>Bootstrap 5 Horizontal Scrolling Cards with Flexbox</h2> <div class=”d-flex flex-row flex-nowrap”> <div class=”card card-body”>Card</div> <div class=”card card-body”>Card</div> <div class=”card card-body”>Card</div> … </div> </div> Update 2019 Bootstrap 4.3+ The flexbox method still works, so you can use the flexbox … Read more