http://ucuzarakip.com/Kategori/Oyuncak-Kategoriler/Ahsap-Oyuncak/15IE 7-8 Css html錯誤
請在IE7或IE8中檢查此頁。我找不到錯誤在哪裏。它可以在Firefox和Chrome上運行,並且不會出錯。
你有什麼建議嗎?
http://ucuzarakip.com/Kategori/Oyuncak-Kategoriler/Ahsap-Oyuncak/15IE 7-8 Css html錯誤
請在IE7或IE8中檢查此頁。我找不到錯誤在哪裏。它可以在Firefox和Chrome上運行,並且不會出錯。
你有什麼建議嗎?
您使用HTML5元素不支持標籤,如nav
,header
,section
,等等。爲了使這些元素在IE7和IE8的工作,添加下面的代碼在你的腦袋標籤
<!--[if lt IE 9]>
<script>
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
document.createElement('hgroup');
</script>
<![endif]-->
<style type="text/css">
header, nav, section, article, aside, footer, hgroup{
display: block;
}
</style>
(刪除你不使用HTML5元素或添加您正在使用在上面的代碼)
您使用的HTML5元素沒有HTML5 shiv。
IE7和8