在我的 HTML 中,我使用了<header>
和<footer>
标签,但是当我在 IE 中检查它时,它没有呈现——布局被破坏了。那是因为HTML版本吗?我尝试删除这些标签,然后我的布局没有中断。
这是我的代码:
<header id="main-header">
<div class="navigation-wrapper">
<hgroup id="logo">
<a href="/"><h1><span class="hide">Heading</span></h1></a>
</hgroup>
<div id="dd" class="wrapper-dropdown-5" tabindex="1">
<ul class="dropdown">
<li>
<a href="#"><i class="icon-user"></i>Profile</a>
</li>
<li>
<a href="#"><i class="icon-cog"></i>Settings</a>
</li>
<li>
<a href="navotar.com/"><i class="icon-remove"></i>Log out</a>
</li>
</ul>
</div>
</div>
</header>