]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Add note to flex grid docs explaining Firefox image bug, closes #7208
authorGeoff Kimball <geoff@zurb.com>
Wed, 6 Jan 2016 20:01:14 +0000 (12:01 -0800)
committerGeoff Kimball <geoff@zurb.com>
Wed, 6 Jan 2016 20:02:45 +0000 (12:02 -0800)
docs/pages/flex-grid.md

index 84da76b77da41da9e77c57e9a62ad9361640e623..8a5444116476196e4a58ebf11cffa187b1b0c255 100644 (file)
@@ -10,7 +10,11 @@ The flex grid works very similarly to the standard float grid, but includes a nu
 
 ## Browser support
 
-The flex grid is only supported in Chrome, Firefox, Safari 6+, IE10+, iOS 7+, and Android 4+. Flexbox is supported in Android 2, but not reliably enough for use with this grid. ([View flexbox browser support.](http://caniuse.com/#feat=flexbox)) We recommend only using the flex grid on projects that can live with purely cutting-edge browser support.
+The flex grid is only supported in Chrome, Firefox, Safari 6+, IE10+, iOS 7+, and Android 4.4+. Flexbox is supported in older versions of Android, but not reliably enough for use with this grid. [View flexbox browser support here.](http://caniuse.com/#feat=flexbox) We recommend only using the flex grid on projects that can live with purely cutting-edge browser support.
+
+<div class="warning callout">
+  <p>In Firefox 43 (the latest version), images in flex columns may overflow their container. To fix this, add a defined <code>width</code> to any images inside a flex column, or use <code>width: 100%</code> for full-bleed images.</p>
+</div>
 
 ---