开发者

CSS link to file on harddrive?

开发者 https://www.devze.com 2023-03-08 02:35 出处:网络
Is it possible to开发者_高级运维 link to a css file on a hard drive (outside of MAMP or similar)? The following isn\'t working for me:

Is it possible to开发者_高级运维 link to a css file on a hard drive (outside of MAMP or similar)? The following isn't working for me:

<link rel="stylesheet" type="text/css" media="screen" href="C:\mystyles.css" />

Thanks


try using the file:/// protocol.

href='file:///C:\mystyles.css'

If that doesn't work (and you say it doesnt), then my guess is that it won't work at all due to it being prevented by security features in the browser.

It depends on where you are loading the main HTML content from, but if the main HTML is loaded from the internet then I can understand why the browser might object to loading the CSS from the client machine's local file system.

One final thing to try: You might try setting up a web server on your machine, putting the mystyles.css file into the web folder, and loading it into the page using:

href='http://localhost/mystyles.css'

I can't really suggest much else, I don't think.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号