Currently, I am working on developing a horizontal scroll feature that allows for cards to flip. One issue I am encountering is how to keep the text within the cards while still enabling scrolling functionality. The 'white-space: nowrap;' property in the .scrollcards class causes the text to overflow from the cards, although it is essential for the scrolling effect. My main concern is finding a way to wrap the text within the card boundaries without compromising any other existing properties. Check out my progress here: https://codepen.io/zepzia/pen/opyxKy
<section>
<div class="container-fluid">
<div class="row">
<div class="scrollcards">
<!-- Card Flip -->
<div class="card-flip card-main">
<div class="flip">
<div class="front">
<!-- front content -->
<div class="card">
<img class="card-img-top" src="http://via.placeholder.com/350x150" alt="100%x180" style="height: 180px; width: 100%; display: block;" data-holder-rendered="true">
<div class="card-block">
<h4 class="card-title">Card Flip</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<div class="back">
<!-- back content -->
<div class="card">
<div class="card-block">
<h4 class="card-title">Card Flip</h4>
<h6 class="card-subtitle text-muted">Support card subtitle</h6>
</div>
<img src="http://via.placeholder.com/350x150" alt="Image [100%x180]" data-holder-rendered="true" style="height: 180px; width: 100%; display: block;">
<div class="card-block">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Card Flip -->
<!-- Repeat similar code blocks for additional card flips -->
</div>
</div>
</div>