Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
harlene #1
Difference between <abbr> & <acronym>?
What is the usage difference in the tags <abbr> & <acronym>? It appears to me
that both tags produce the same result. Is it the default for these tags to
change the cursor into a question mark? Do you always need to use the attribute
"title" with these tags?
I did a search on the forum for this topic and saw a post that stated IE6
doesn't recognize <abbr>. Is that accurate? How would you get around that?
(Questions, questions, questions. . .inquiring minds want to know. . .
:confused; )
Thanks.
harlene Guest
-
Is there a difference???
Hi to you all, I have had an application built for me using flash and coldfusion and linking to a mySQL database. When the mySQL database was on a... -
Why is there a difference??
I'm noticing that for some reason the 2 icons I have on my page are moving in different browsers. Look fine in IE but not in Firefox. Page is... -
difference between these 2?
In some examples I am looking through they are speaking of datagrids and datalists (this is not the question :) For the datalist a column is... -
Difference between ASP & PHP
I doubt about the difference between ASP & PHP. Some people say that PHP is faster than ASP and PHP is the free equivalant of ASP. An other... -
what is the difference....
Hi, What is the difference between.... $data = file($this->URL); ....and... $data = @file($this->URL); -
Lionstone #2
Re: Difference between <abbr> & <acronym>?
Well, in practice, there isn't a difference. Both tend to give you a
different cursor and a tooltip showing the title attribute. Yes, they're
both relatively useless without the title attribute. You can change the
cursor and appearance using CSS.
IE does not recognize <abbr>; you can get around it by using only <acronym>.
I doubt many grammarians would bother to check your source code. ;)
You can also use <abbr> with a span as follows:
<abbr><span class="abbr" title="HyperText Markup
Language">HTML</span></abbr>
You'd then attach all your styles to class .abbr rather than the tag abbr.
Still - is it really that important? :)
Lionstone Guest
-
-
mzanime.com #4
Re: Difference between <abbr> & <acronym>?
That wasn't a very good explanation.
Both of those tags improve the page's web accessibility, and they allow you to
specify the full spelled-out word of an acronym or an abbreviated word. For
example:
<acronym title="HyperText Markup Language">HTML</acronym>
<abbr title="Number">No.</abbr>
Every modern Gecko based browser will automatically add a dotted underline if
you use either of these tags, but IE will not. Also, IE doesn't support <abbr>,
but I often use <acronym> much more frequently than <abbr> anyway.
One work around for IE, is to add this to your style sheet. It allows the
<acronym> tag to be more noticable when used, plus these tags popup a tooltip
when you hover your mouse over them.
acronym { cursor:help; border-bottom:dotted 1px #CCC; }
mzanime.com Guest
-
harlene #5
Re: Difference between <abbr> & <acronym>?
Thanks, Mike. Your explanation and css suggestion are very helpful.
harlene Guest



Reply With Quote

