简体   繁体   中英

CSS link to file on harddrive?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM