如何正确地将CSS应用到iFrame中?

发布于 2024-11-07 13:55:27 字数 506 浏览 0 评论 0原文

各位,我有以下问题。 我的网站使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

給妳壹絲溫柔 2024-11-14 13:55:27

我通过向 ie2.html 添加 doctype 定义解决了这个问题。似乎 IE 使用自己的 CSS,如果没有定义的话,会导致不同的 css。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

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.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文