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:
Nicolas Hoffmann 2015-08-26 15:10:27 +02:00
parent 17f2a3bcfc
commit 4d0589827a

View File

@ -95,6 +95,7 @@ a:hover {
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/
abbr[title] {
text-decoration: none;
border-bottom: 1px dotted;
}
/**