使用 .less 的网站在 Safari/FF/和任何其他现代浏览器中渲染良好,但在 IE 中则不然
我目前正在使用 .lesscss 启动一个网站。在大多数现代浏览器中一切都工作正常,但它只是不想在 IE 6/7/8/9 中工作。
您可以在以下位置找到该网站: http://diejongens.com/home
任何帮助将不胜感激!
I'm currently launching a website using .lesscss. Everything works fine in most modern browsers but it just doesn't want to work in IE 6/7/8/9.
You can find the website on: http://diejongens.com/home
Any help would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其中之一 ../css/responsive.less 应该是 /css/responsive.less 。如果您已经在根目录中,“../”将无法工作。
但真正的问题是你不应该使用 .less,而应该使用 .css。所以使用 /css/responsive.css 。 Less 重写了 css,但如果直接链接到 .less 文件,预处理器不会完成它的工作,浏览器将不知道如何处理非标准的 less 语法。
Groetjes uit Holland。
For one ../css/responsive.less should be /css/responsive.less . '../' can't work if you are already in the root.
But the real problem is that you shouldn't use .less, but .css. so use /css/responsive.css . Less rewrites the css, but if you link directly to the .less file the pre-processor doesn't do it's job, and browsers will not know what to do with the nonstandard less syntax.
Groetjes uit Holland.