From a33bfc1ce6b79fdc98fe1ac7716fe253fc186f8d Mon Sep 17 00:00:00 2001 From: Pete Houghton Date: Wed, 3 Dec 2014 17:28:26 +0000 Subject: [PATCH] Update ink.css Causes a multitude of unnecessary word breaks in Apple Mail/iOS mail app and is ignored in every other client causing inconsistency. Google Chrome has no support for the hyphen property in any version. --- css/ink.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css/ink.css b/css/ink.css index 92b14dc8..aa04fafa 100644 --- a/css/ink.css +++ b/css/ink.css @@ -70,9 +70,9 @@ table { td { word-break: break-word; - -webkit-hyphens: auto; - -moz-hyphens: auto; - hyphens: auto; + -webkit-hyphens: none; + -moz-hyphens: none; + hyphens: none; border-collapse: collapse !important; } -- 2.47.2