IE doesn't support HTML5. You need to use a JavaScript (HTML5 shiv by Remy Sharp) hack to make IE recognize the new element. Google HTML5 Remy Sharp and HTML5 shiv js and you should find what you need.
M Sent from my iPad On Feb 7, 2011, at 12:49 PM, Michael Bierman <[email protected]> wrote: > Hi, > > I hope that someone can help. > > I'm trying to use modernizer (http://www.modernizr.com/) 1.6 which > seems to work well except for the following: > > I am using the <header> element. I am unable to style it however. The > code in question looks like this: > > <header> > <H1 id=Name><A id=top></A>Michael Bierman </H1> > <P class=Contacts>email:-deleted-| webaddress... </P> > </header> > > When I look in Explorer, I see the following nodes: > > <H1 id=Name><A id=top></A>Michael Bierman </H1> > <P class=Contacts>email:-deleted-| webaddress... </P> > </header/> > > So of course no css was working on the header tag. The following hack > works, but seems contrary to modernizer's usage: > <header> > <div id="header"> > <h1 id=Name><A id=top></A>Michael Bierman </h1> > <p class=Contacts>email:-deleted-| webaddress... </p> > <div> > </header> > > Any advice would be greatly appreciated. > > > Michael Bierman > > -- > -- > You received this because you are subscribed to the "Design the Web with CSS" > at Google groups. > To post: [email protected] > To unsubscribe: [email protected] -- -- You received this because you are subscribed to the "Design the Web with CSS" at Google groups. To post: [email protected] To unsubscribe: [email protected]
