I use the <abbr>
tag to show the full content of some trimmed words with the CSS property text-overflow: ellipsis
.
When using <abbr>
these words get a dotted underline and on hover cursor changes to one with a question mark.
I did manage to change it using this. But, I'm not sure this is the best way, is there anything wrong with this approach?
abbr[title] {
border-bottom: none !important;
cursor: default !important;
}
` because you're using that tag for footnotes...
– Adriano Repetti Oct 09 '14 at 10:55