创建一个新站点,但在 IE8 中发生了一些事情。社交栏向下对齐,而不是像在所有其他浏览器中那样向右浮动,因此它会将导航栏和搜索栏向下推到幻灯片下方。我也已经有 html5 shiv 了。
#header-right { width: 560px; height: 400px; margin-top: 30px; float: right; height: 189px;}
.social-widget { width: 100%; height: 46px; display: block;}
.social-widget p {float: right;}
.social-widget img {margin: 0 5px 0 5px; float: left;}
.search-widget { width: 400px; float: right;}
#banner { margin-top: 240px; clear: both; width: 1003px; margin: 0px auto;}
HTML
<div id="header-right">
<span class="social-widget"><?php dynamic_sidebar( 'social-media-widget' ); ?></span>
<nav id="access" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</nav><!-- #access -->
<span class="search-widget"><?php dynamic_sidebar( 'search-widget' ); ?></span>
</div><!-- #header-right -->
</header><!-- header -->
IE8 我缺少什么?任何帮助表示赞赏.c