We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

nealwatkins on 07/13/07


Tagged

acroynm


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

stoker


acroynm


Published in: CSS 


URL: acroynm

acroynm

  1. Well, technically this is not an acroynm or even a tag. :)
  2.  
  3. "An acronym is defined as a WORD formed from the initial letters of a
  4. multi-word name. The important point here is that an acronym must be a WORD
  5. - this means that the joined initial letters must be able to be pronounced."
  6. http://www.maxdesign.com.au/presentation/abbreviations/
  7.  
  8. Metropolitan Statistical Area (MSA) is actually an initialism - An
  9. abbreviation pronounced as the names of the individual letters formed only
  10. from the initial letter of constituent words.
  11.  
  12. Initialisms are subsets of abbreviations. So theoretically this should be
  13. marked up using the <abbr> element:
  14. <abbr title=" Metropolitan Statistical Area">M.S.A.</abbr>
  15.  
  16. The problem is that the <abbr> is poorly supported by IE5 and IE6. This
  17. means you may have to (1) revert to using the <acronym> element, or (2)
  18. place a span inside your <abbr> element and style this instead or (3) use
  19. JavaScript:
  20. http://annevankesteren.nl/2003/08/improved-styling-abbr-in-ie
  21.  
  22. The full stops between the letters in the initialism are used by some
  23. authors in order to allow screen readers to spell out the letters properly
  24. rather than coming out as a single unintelligible word - "msah".
  25.  
  26. Oh, and I'd vote for just the first instance on each page - as others have
  27. suggested.
  28.  
  29. Thanks
  30. Russ

Report this snippet 

You need to login to post a comment.