Align my cards horizontally

Good morning

I can’t align the cards horizontally, can you help me ?

https://codepen.io/aaashpnt-the-sans/pen/MWNjPQb

quick and dirty answer is flex

.slider { display:flex; gap: 2rem; flex-wrap: wrap; }

though that will require you to change your card width calculation:

.card { width: 300px; }
2 Likes

Thank you, I followed your advice and it works now.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.