Fix for double abbr in Firefox
Firefox is styling abbr/acronym by default with ```text-decoration: dotted underline``` https://developer.mozilla.org/en-US/Firefox/Releases/40/Site_Compatibility This fix avoids a double border-bottom.
This commit is contained in:
parent
17f2a3bcfc
commit
41b328a23b
1 changed files with 1 additions and 0 deletions
|
@ -107,6 +107,7 @@ a:hover {
|
|||
*/
|
||||
|
||||
abbr[title] {
|
||||
text-decoration: none;
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue