2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03:00

Backport the abbr fix from the updated normalize.css.

This commit is contained in:
XhmikosR
2018-12-03 18:09:58 +02:00
parent dd23bb5c12
commit bf69f1fcec
+5 -2
View File
@@ -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
}
//