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]
