Currently, I am using flex-mode and aiming to create a 'deck' of 'cards' with uniform height and width. My goal is to ensure that the width remains consistent across different breakpoints. Unfortunately, I have not been able to achieve this so far. Whenever I enclose a group of cards in a card-deck
class, they seem to disregard any width settings, whether applied using col-*
classes or by directly specifying a width.
The hierarchy I attempted to implement was as follows:
.row>.card-deck-wrapper>.card-deck>(.col-md-3>.card>.card-block)*4
You can view my attempted solution on this CodePen link.