On May 19, 1:58 pm, Karlson <[email protected]> wrote: > > 2. Page where u can see problem if u look this page in IE7. In this > example I change map container from <div> to <p> > tag.http://test.example.tu2.ru/index2.html > > It's very unexpected problem for me and interesting try to understand > why it’s appear.
You're using XHTML Strict. That doesn't allow <div> (which the maps use) to appear inside <p>. IE6 fails with an "Unknown runtime error" which indicates a DTD problem, among other things. <div> can contain the <div>s which the API uses. That's why all the documentation shows that and not <p>. Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
