Skip to content

Commit

Permalink
Address inconsistent styling of abbr[title]
Browse files Browse the repository at this point in the history
  • Loading branch information
kazssym authored and jonathantneal committed Jan 23, 2016
1 parent a3531ef commit 5304c78
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
8 changes: 6 additions & 2 deletions normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
}

/**
Expand Down

0 comments on commit 5304c78

Please sign in to comment.