UX: removing double underline from abbr

This commit is contained in:
Kris 2018-01-02 21:06:06 -05:00
parent 0eba867c8c
commit efc5bc2c55
1 changed files with 4 additions and 3 deletions

View File

@ -101,11 +101,12 @@ 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 & Edge
*/
abbr[title] {
border-bottom: 1px dotted;
abbr[title], acronym[title] {
text-decoration: underline;
text-decoration-style: dotted;
}
/**