From 5304c784ffbd03da265fcbf7bf49f6964cbcfc9c Mon Sep 17 00:00:00 2001 From: Kaz Nishimura Date: Sun, 16 Aug 2015 10:24:32 +0900 Subject: [PATCH] Address inconsistent styling of abbr[title] --- CHANGELOG.md | 1 + normalize.css | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61be4dc..7797fe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * Correct `hr` overflow in IE 8/9/10/11 and Edge 12. * Ensure `mark` long-hand background declaration usage. * Remove color inheritance from form controls. +* Address inconsistent styling of abbr[title]. === 3.0.3 (March 30, 2015) diff --git a/normalize.css b/normalize.css index ae78143..6b7e885 100644 --- a/normalize.css +++ b/normalize.css @@ -103,11 +103,15 @@ a:hover { ========================================================================== */ /** - * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + * Address inconsistent styling of `abbr[title]`. + * 1. Correct styling in Firefox 39 and Opera 12. + * 2. Correct missing styling in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { - border-bottom: 1px dotted; + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ } /**