From 1c3a18f7def92abe01cd206470bd1ebdee5f3633 Mon Sep 17 00:00:00 2001 From: Nicolas Hoffmann Date: Wed, 26 Aug 2015 15:09:02 +0200 Subject: [PATCH] Fix for double abbr in Firefox Firefox is styling abbr/acronym by default with ```text-decoration: dotted underline``` https://developer.mozilla.org/en-US/Firefox/Releases/40/Site_Compatibility This fix avoids a double border-bottom. --- sass/_01a-normalize.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/sass/_01a-normalize.scss b/sass/_01a-normalize.scss index 87e37d2..adcb602 100644 --- a/sass/_01a-normalize.scss +++ b/sass/_01a-normalize.scss @@ -107,6 +107,7 @@ a:hover { */ abbr[title] { + text-decoration: none; border-bottom: 1px dotted; }