Skip to content

Commit 3eb42b4

Browse files
committed
Backport prevent text-decoration-skip-ink from v4
Based on twbs#27673 (developed by @MartijnCuppens).
1 parent f17f882 commit 3eb42b4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

less/normalize.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,14 @@ a:hover {
108108
//
109109
// 1. Remove the bottom border in Chrome 57- and Firefox 39-.
110110
// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
111+
// 3. Prevent the text-decoration to be skipped.
111112
//
112113

113114
abbr[title] {
114115
border-bottom: none; // 1
115116
text-decoration: underline; // 2
116117
text-decoration: underline dotted; // 2
118+
text-decoration-skip-ink: none; // 3
117119
}
118120

119121
//

0 commit comments

Comments
 (0)