Forum Discussion
__John_L_
May 06, 2026Copper Contributor
MS Edge use of file:// protocol in script and link tags
I'm trying to view an html file that exists on my hard drive. I have <SCRIPT> and<LINK> tags with relative addresses to files (stylesheets and scripts) in the folder (and subfolders) that contains th...
- May 10, 2026
Quite simply, the specific choice of relative link format solves the problem:
<link type="text/css" rel="stylesheet" href="./css/sh_dull.min.css">works,
<link type="text/css" rel="stylesheet" href="css/sh_dull.min.css">does not. The analogous case for script relative links behaves similarly.
__John_L_
May 10, 2026Copper Contributor
Quite simply, the specific choice of relative link format solves the problem:
<link type="text/css" rel="stylesheet" href="./css/sh_dull.min.css">works,
<link type="text/css" rel="stylesheet" href="css/sh_dull.min.css">does not. The analogous case for script relative links behaves similarly.