Unwanted double underlining of <abbr> elements

The latest version of Chrome (v58) adds dashed underline to elements <abbr>

:

abbr[title], acronym[title] {
  text-decoration: underline dotted;
}

      

Bootstrap itself applies a dashed bottom border to elements <abbr>

. This leads to the unwanted effect with two borders:

enter image description here

How can I fix this?

+3


source to share


2 answers


This can be fixed by simply adding the following to your CSS:

abbr[title] {
  text-decoration: none;
}

      



I presented this as an issue on the Bootstrap GitHub page ( # 22562 ), so hopefully Bootstrap will handle this for us in the next release.

+5


source


Either delete text-decoration

or border-bottom

.



0


source







All Articles