From f024d2bfd42293300196c838061bfaa04c0ebdfc Mon Sep 17 00:00:00 2001 From: Brett DeWoody Date: Thu, 7 Aug 2014 09:41:04 -0600 Subject: [PATCH] Fix for Firefox's image width bug Fix for Firefox bug #975632 - https://bugzilla.mozilla.org/show_bug.cgi?id=975632. I created an issue for this - https://github.com/zurb/foundation/issues/5576. --- scss/foundation/components/_tables.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scss/foundation/components/_tables.scss b/scss/foundation/components/_tables.scss index 362b4e3cd..4d20e5c91 100755 --- a/scss/foundation/components/_tables.scss +++ b/scss/foundation/components/_tables.scss @@ -63,6 +63,8 @@ $table-margin-bottom: rem-calc(20) !default; background: $table-bg; margin-bottom: $table-margin-bottom; border: $table-border-style $table-border-size $table-border-color; + table-layout:fixed; + width:100%; caption { background: $table-caption-bg; -- 2.47.2