HTML5中的新布局标签有多好?使用它们有什么危害? (我不是在说< video> – 我已经看到了特定的后备代码).
具体来说,在这样的情况下
<html> <head></head> <body> <header> <h1>Talking Dogs</h1> <b><p>Humans aren't the only talkers!</p></b> </header> <article> <p>Ever encountered a talking dog? I have.</p> <p>It all happened one day as I was walking down the street...</p> </article> <footer> © 2009 Woofer Dog Corporation </footer> </body> </html>
将使用< header>,< article>或< footer>导致任何浏览器问题?它们是否降解为< div>在不支持的浏览器自动?或者如果我包含它们,我应该只包括它们的语义,而不是CSS样式或DOM脚本?