Thomas Ditmars wrote: >> <div id="content"> ... > Does this also apply to HTML 4.01 Strict? > > I guess my actual question is: "What is the proper way of coding > '#anchor-name' links in HTML 4.01 Strict?"
It is best to use *both* (up to XHTML 1.0) *with* a A element, to be "nice to old browsers". You may want to remove styles, but not functionality ;-) <a href="#" id="content" name="content"></a> This should take care of old browsers, tabbing navigation and the Validator. Thierry | http://www.TJKDesign.com ****************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
