Can you create an <abbr> tag?
6 answers
Can you create a tag using css?
Yes, you can.
In firefox, it appears with dots under the words
Yes. Firefox default style:
abbr[title], acronym[title] { border-bottom: 1px dotted; }Is this a browser browser?
Yes, this behavior is determined by the default stylesheet for each browser. Then different browsers may display it differently.
Can you remove the dots?
, syle:
abbr[title], acronym[title] { border-bottom: none; }
+8
Firefox 40 :
https://developer.mozilla.org/en-US/Firefox/Releases/40/Site_Compatibility#CSS
Firefox, CSS:
text-decoration: none;
+16
