Internet Explorer 的 CSS 问题
您好,我正在尝试添加 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
HTML 的前两行是:
删除文档类型上方的注释,因为它会导致您的网站以 显示怪癖模式。
position:fixed
在 IE 的怪异模式下不起作用。The first two lines of your HTML are:
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.试试这个 http://jsfiddle.net/RftZy/1/ 这有效。
Try this http://jsfiddle.net/RftZy/1/ This works.
感谢您让我们访问您的网站查看代码...
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.
看看这个:
http://tagsoup.com/cookbook/css/fixed/
可能有帮助。
Check this out:
http://tagsoup.com/cookbook/css/fixed/
might help.