Can you style a <abbr> tag?

Jacob Gray picture Jacob Gray · Mar 21, 2014 · Viewed 11.5k times · Source

Can you style a <abbr> tag using css? In firefox, it is displayed with dots underneath the words like in the picture below:
enter image description here

Is this a browser by browser thing? can you remove the dots or do you just use the title="title here" option? thanks

Answer

luminancedesign picture luminancedesign · Aug 13, 2015

Firefox 40 has a small change:

https://developer.mozilla.org/en-US/Firefox/Releases/40/Site_Compatibility#CSS

To remove default underline in Firefox, you now need to set CSS:

text-decoration: none;