From 8ed3140d5235da2e8b9d3efec9e4ae161db64d95 Mon Sep 17 00:00:00 2001 From: Aleks Hudochenkov Date: Mon, 11 Apr 2016 15:59:42 +0300 Subject: [PATCH] Remove gaps in links underline in iOS 8+ and Safari 8+ (#573) --- normalize.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/normalize.css b/normalize.css index a4a667a..849d29e 100644 --- a/normalize.css +++ b/normalize.css @@ -85,11 +85,13 @@ template, /* 1 */ ========================================================================== */ /** - * Remove the gray background on active links in IE 10. + * 1. Remove the gray background on active links in IE 10. + * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */ a { - background-color: transparent; + background-color: transparent; /* 1 */ + -webkit-text-decoration-skip: objects; /* 2 */ } /**