Set Bootstrap 3 buttons to have same position in cards
Clash Royale CLAN TAG #URR8PPP Set Bootstrap 3 buttons to have same position in cards I am trying to align the Bootstrap 3 buttons on a horiziontal line like the below picture. Here is my demosite until now. I can align the buttons with setting a margin, but then it seems to be a puzzle to look good on all viewports. Is there a smart way to align the buttons? I have tried to delete so much code there is not relevant for the question. Therefore some css classes are not used in the below code: /* Track and trace */ .bs-calltoaction{ position: relative; width:auto; padding: 15px 25px; border: 1px solid black; margin-top: 10px; margin-bottom: 10px; border-radius: 5px; } .bs-calltoaction > .row{ display:table; width: calc(100% + 30px); } .bs-calltoaction > .row > [class^="col-"], .bs-calltoaction > .row > [class*=" col-"]{ float:none; display:table-cell; ...