我的HTML5 Wordpress <a href="#">site</a>
在IE中无法正常显示,但在Chrome和Firefox中运行良好。这是什么原因,我该如何解决?
答案 0 :(得分:0)
如果您使用的是html 5元素,请尝试在css中添加
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
它会正常工作。 或者只是尝试将此代码添加到html
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
答案 1 :(得分:0)
检查是否在标题中添加了html 5 doctype。 或者用过它。