English 中文(简体)
某些内容不会在IE中显示?
原标题:Certain content won t display in IE?

我正在创建一个网站。

该网站在Chrome(10)、FF(3.6.13)中运行良好,但只有一半在IE(8)中运行。现在,我知道浏览器之间的一些问题,但这一点让我很困惑。因为脚本的一半正在工作(正确显示),而另一半则没有。

可以找到网站的实时版本此处

附加信息:

我正在使用html5 doctype,<;!文档类型html>

我已经用HTML5和HTML4.01 STRICT验证了我的网站

编辑

应Zabba的要求,以下是应该发生的事情:

I am externally loading content from other sources into my website. My menu(s) and the text. In Chrome, and FF the menus, and the content are loaded and displayed. In IE, the menus are NOT loaded bu the content is. Funny enough, the logo also stops loading in IE.

编辑

问题已经缩小到CSS问题,谢谢!

最佳回答

问题出在CSS上,而不是JavaScript上。试试这些建议:

从CSS中的#body块中删除过滤器:alpha(不透明度=80)

将z索引值设置为>;5在丢失的项目上,因为您在#body上有z索引:5。或者从#body中删除z索引。

问题回答

暂无回答




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!