From: Mark Otto Date: Thu, 12 May 2016 04:18:35 +0000 (-0700) Subject: fixes #19650: improve non-flexbox card deck behavior so columns are always the same... X-Git-Tag: v4.0.0-alpha.3~74^2^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de91c5e0be65fe3f9063305e583cc66cd02ec169;p=thirdparty%2Fbootstrap.git fixes #19650: improve non-flexbox card deck behavior so columns are always the same width --- diff --git a/scss/_card.scss b/scss/_card.scss index fdc5998de5..fd0280a9e9 100644 --- a/scss/_card.scss +++ b/scss/_card.scss @@ -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; } }