1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

fixes #19650: improve non-flexbox card deck behavior so columns are always the same width

This commit is contained in:
Mark Otto 2016-05-11 21:18:35 -07:00
parent 5ff8d0f66e
commit de91c5e0be

View file

@ -214,12 +214,12 @@
$space-between-cards: (2 * $card-deck-margin);
.card-deck {
display: table;
width: 100%;
table-layout: fixed;
border-spacing: $space-between-cards 0;
.card {
display: table-cell;
width: 1%;
vertical-align: top;
}
}