Skip to content

Commit

Permalink
Backport the abbr fix from the updated normalize.css.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Dec 10, 2018
1 parent dd23bb5 commit bf69f1f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions less/normalize.less
Expand Up @@ -106,11 +106,14 @@ a:hover {
// ==========================================================================

//
// Address styling not present in IE 8/9/10/11, Safari, and Chrome.
// 1. Remove the bottom border in Chrome 57- and Firefox 39-.
// 2. Add the correct text decoration 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 bf69f1f

Please sign in to comment.