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
4d0589827a
1 changed files with 1 additions and 0 deletions
|
@ -95,6 +95,7 @@ a:hover {
|
||||||
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
||||||
*/
|
*/
|
||||||
abbr[title] {
|
abbr[title] {
|
||||||
|
text-decoration: none;
|
||||||
border-bottom: 1px dotted;
|
border-bottom: 1px dotted;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue