I am looking to enhance the design of my website by incorporating CSS borders on cards displayed in columns of 3. However, I want to ensure that the cards are not split between columns. Below is an excerpt from my CSS code:
<style>
.card {
border-style: ridge;
border-width: 3px;
}
.card-deck{
-webkit-column-count: 3;
overflow-wrap: break-word;
}
</style>
How can I prevent the cards from being split between columns?