From 781309a11cf4c046d0a01819b8d4a5860be8f5c0 Mon Sep 17 00:00:00 2001 From: Ian Stewart Date: Tue, 25 Nov 2014 15:03:49 +0000 Subject: [PATCH] Twenty Fifteen: prevent too-wide tables from popping out of posts. Props iamtakashi, fixes #30420 git-svn-id: https://develop.svn.wordpress.org/trunk@30566 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfifteen/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-content/themes/twentyfifteen/style.css b/src/wp-content/themes/twentyfifteen/style.css index b626d4b489..75ee85c31b 100644 --- a/src/wp-content/themes/twentyfifteen/style.css +++ b/src/wp-content/themes/twentyfifteen/style.css @@ -406,6 +406,7 @@ table { border-spacing: 0; border-width: 1px 0 0 1px; margin: 0 0 1.6em; + table-layout: fixed; /* Prevents HTML tables from becoming too wide */ width: 100%; }