From 866d1a2a8a616939879645536ed0c5f4382d0709 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Tue, 4 Sep 2012 03:47:24 +0000 Subject: [PATCH] Twenty Twelve: fix long word overflow in IE9 and FF15 by using `word-wrap` instead of `word-break`, fixes #21503. git-svn-id: https://develop.svn.wordpress.org/trunk@21720 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/themes/twentytwelve/style.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/wp-content/themes/twentytwelve/style.css b/wp-content/themes/twentytwelve/style.css index a914617cb7..a7cc473c93 100644 --- a/wp-content/themes/twentytwelve/style.css +++ b/wp-content/themes/twentytwelve/style.css @@ -550,15 +550,13 @@ section[role="banner"] { /* Sidebar */ .widget-area .widget { - overflow: hidden; - -moz-hyphens: auto; - -ms-word-break: break-all; + word-wrap: break-word; -webkit-hyphens: auto; + -moz-hyphens: auto; hyphens: auto; - word-break: break-all; - word-break: break-word; margin-bottom: 48px; margin-bottom: 3.428571429rem; + overflow: hidden; } .widget-area .widget h3 { margin-bottom: 24px;