Floating cards, cant find a way to get a proper design.

0
Hi there, Does anyone know how I can get all the cards in the same format. Whenever the text is a bit longer/shorter, the btn-block will start ‘floating’ randomly within the card (See image). Thank you in advance. Kind regards, Gijs van der Linden  
asked
1 answers
0

You can add a div, with class flexcontainer around the two cards or the layoutgrid...

You can add class flexcontainer to th two cards and give minimum width e.g.

width: 300px;
flex-direction: column;
align-items: stretch;

Then a flexcontainer around your header & text to group them

Then a container around the button with styles: 

  margin-top: auto;
  align-items: flex-end;

answered