CSS 无法在 Chrome 和 Safari 中加载。..在 Firefox 和 IE 中可以正常工作

发布于 2024-10-18 09:20:37 字数 258 浏览 1 评论 0原文

我在 aspx 页面中提供外部 css 路径,

<link rel="stylesheet" media="all" href="file:///D:/CSS/Style.css" type="text/css" />

在访问该页面时,它在 firefox 和 ie 中工作正常。

但是当我在 chrome 或 safari 中打开此页面时。 它不执行任何操作,也没有应用 css。 请告诉我我做错了什么?

I am giving external css path in aspx page via

<link rel="stylesheet" media="all" href="file:///D:/CSS/Style.css" type="text/css" />

its works fine in firefox and ie while access that page.

but when i open this page in chrome or safari.
it does'nt do anything and no css is applying.
please tell what wrong i am doing??.

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

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

发布评论

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

评论(3

审判长 2024-10-25 09:20:37

href 属性中创建相对路径。例如:“~/CSS/Style.css”

Make a relative path in the href attribute. For example: "~/CSS/Style.css"

刘备忘录 2024-10-25 09:20:37

尝试链接到 css 的替代方法:

<style type="text/css"><!-- @import url(file:///D:/css/styles.css); --></style>

但也尝试运行本地服务器而不是使用文件系统。 XXAMPEasyPHP 很好。

Try an alternitive way of linking to the css:

<style type="text/css"><!-- @import url(file:///D:/css/styles.css); --></style>

But also try running a local server rather than using the file system. XXAMP and EasyPHP are good.

满身野味 2024-10-25 09:20:37

阅读了一些内容后,尝试在 UNC 中使用 "file://" 而不是 "file:///"。 Chrome 和 safari 应该能够读取此内容并相应地更改它。

Done a bit of reading around, try using "file://" instead of "file:///" in your UNC. Chrome and safari should be able to read this and change it accordingly.

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