Internet Explorer 的 CSS 问题

发布于 2025-01-02 12:36:20 字数 271 浏览 1 评论 0原文

您好,我正在尝试添加 2 个随页面滑动的按钮。我的意思是 position:fixed

我的网站在除 Internet Explorer 之外的所有浏览器上都运行良好。

请看一下:网站

正如您所看到的,实时聊天按钮和书签按钮正在与所有内容一起滑动除 Internet Eplorer 之外的浏览器。

感谢您的帮助。

Hi am trying to add 2 buttons sliding with the page. I mean position:fixed

My website is working well on every browser except Internet Explorer.

Please take a lool to it: Website

As you see live-chat button and bookmark-us button is sliding with all browsers except Internet Eplorer.

Thank you for your helps.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

笑看君怀她人 2025-01-09 12:36:20

HTML 的前两行是:

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

删除文档类型上方的注释,因为它会导致您的网站以 显示怪癖模式

position:fixed 在 IE 的怪异模式下不起作用。

The first two lines of your HTML are:

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

Remove the comment above the doctype, because it's causing your site to be displayed in quirks mode.

position: fixed does not work in IE's quirks mode.

别想她 2025-01-09 12:36:20

试试这个 http://jsfiddle.net/RftZy/1/ 这有效。

.live-chat {
   position: fixed;
   height: 112px;
   width: 32px;
   z-index: 1001;
   top: 40%;
   left: -2px;
}

Try this http://jsfiddle.net/RftZy/1/ This works.

.live-chat {
   position: fixed;
   height: 112px;
   width: 32px;
   z-index: 1001;
   top: 40%;
   left: -2px;
}
无人接听 2025-01-09 12:36:20

感谢您让我们访问您的网站查看代码...

Internet Explorer 无法像其他浏览器那样呈现 CSS。您可以信赖的一件事是,有时 CSS 必须与元素具有相同的顺序才能正确渲染。还可以在网上寻找好的解决方案。

Thank you for making us go to your website to look at the code...

Internet Explorer can't render CSS like other browsers can. One thing you can count on is that sometimes the CSS has to be in the same order of the Elements in order to render correctly. Also look online for good solutions.

倒带 2025-01-09 12:36:20

看看这个:

http://tagsoup.com/cookbook/css/fixed/

可能有帮助。

Check this out:

http://tagsoup.com/cookbook/css/fixed/

might help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文