升级到HTML5,HGROUP怎么样?

时间:2013-12-17 03:40:28

标签: html5 header

所以当我决定转向HTML5时,我大约有40%完成了我的新模板:)所以我已经完成了标题,导航和页脚。当我注意到有关HGROUP的文章时,我正准备处理index.php文件。

这是我的标题:

<header>
    <div class="wrapped">
        <a href="#" id="logo"><img src="<?php echo get_template_directory_uri(); ?>/images/logo.jpg" alt="" /></a>
        <nav>
            <?php wp_nav_menu( array( 'menu' => 'Main Navigation')); ?>
        </nav>
    </div>
</header>

包裹是将其设置为以边距为中心的部分:0 auto;并设置宽度为990px​​。我应该使用HGROUP作为我的徽标,还是现在完全用它?

2 个答案:

答案 0 :(得分:1)

hgroup has been dropped from the HTML5 spec,因此请避免使用它,因为浏览器将来可能会完全取消对它的支持。只需使用div即可,如果相关则添加class

答案 1 :(得分:1)