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:09:02 +02:00
parent 17f2a3bcfc
commit 1c3a18f7de

View File

@ -107,6 +107,7 @@ a:hover {
*/
abbr[title] {
text-decoration: none;
border-bottom: 1px dotted;
}