Is it bad form to use the <abbr> tag to explain words that are not actually abbreviations but to produce a “hover over” explanation of content?
If it is, why is it bad form, and what is a good HTML alternative?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You actually don’t need to use the
<abbr>tag to use thetitle=attribute. You can apply it to many things, including<span>tags.Example of use:
From w3schools.com: By marking up abbreviations you can give useful information to browsers, spell checkers, translation systems and search-engine indexers.
In other words, you’ll provide misleading information to search engines when there is no reason to, by incorrectly using the
<abbr>tag.