如何正确地将CSS应用到iFrame中?
各位,我有以下问题。 我的网站使用 iframe 来选择元素... 重要的是 FF(和 Chrome)正确渲染 css,而 IE 似乎不应用它或至少不应用它的一部分。
我在此处放置了我的网站的简化示例:http://thariama.th.ohost.de/ie2.html 请使用FF和IE查看。您需要点击“点击我!” iframe 将打开。
老实说,它看起来不太好,但那是因为我尽可能地从更复杂的网站中剥离出来。 输入字段 X2 的右侧有一个镜头图像。 在 FF 中,如果用户输入三个字母,它就会显示出来并被另一个图像替换。在 IE 中什么也没有发生,正如你所看到的,其他 css 设置也没有被应用。
我该怎么做才能让 IE 也应用 css?
Folks, i have the following problem.
My website uses an iframe to select an element aso...
The important thing is that FF (and Chrome) renders the css correctly while IE seems to not apply it or at least parts of it.
I placed a simplified example of my site here: http://thariama.th.ohost.de/ie2.html
Please have a look using FF and IE. You need to click on "Click me!" and the iframe opens up.
To be honest, it does not look very nice, but thats because i stripped out as much as possible out of the more complex website.
There is a lense image right of the input field X2.
In FF it gets displayed and it gets replaced with another image if the user types in three letters. In IE nothing happens, also other css-settings have not been applied as you can see.
What i can do to make IE apply the css too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过向 ie2.html 添加 doctype 定义解决了这个问题。似乎 IE 使用自己的 CSS,如果没有定义的话,会导致不同的 css。
I solved this problem by adding a doctype definition to
ie2.html
. Seems like IE uses an own one if none is defined what leads to a different css.