From 76975666a41a755b7e01b5aed510b1312cb4399d 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: http://core.svn.wordpress.org/trunk@21720 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- style.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index a914617cb..a7cc473c9 100644 --- a/style.css +++ b/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;