Good morning
I can’t align the cards horizontally, can you help me ?
Good morning
I can’t align the cards horizontally, can you help me ?
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; }
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.