Skip to content

Commit 5304c78

Browse files
kazssymJonathan Neal
authored andcommitted
Address inconsistent styling of abbr[title]
1 parent a3531ef commit 5304c78

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Correct `hr` overflow in IE 8/9/10/11 and Edge 12.
55
* Ensure `mark` long-hand background declaration usage.
66
* Remove color inheritance from form controls.
7+
* Address inconsistent styling of abbr[title].
78

89
=== 3.0.3 (March 30, 2015)
910

normalize.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,15 @@ a:hover {
103103
========================================================================== */
104104

105105
/**
106-
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
106+
* Address inconsistent styling of `abbr[title]`.
107+
* 1. Correct styling in Firefox 39 and Opera 12.
108+
* 2. Correct missing styling in Chrome, Edge, IE, Opera, and Safari.
107109
*/
108110

109111
abbr[title] {
110-
border-bottom: 1px dotted;
112+
border-bottom: none; /* 1 */
113+
text-decoration: underline; /* 2 */
114+
text-decoration: underline dotted; /* 2 */
111115
}
112116

113117
/**

0 commit comments

Comments
 (0)