我正在尝试将我的 style.css 文件链接到我的 index.html 文件。这两个文件都位于不同的文件夹中。
文件夹结构:
/父母
- /src/index.html
- /css/style.css
我尝试使用的代码:
<link rel="stylesheet" type="text/css" href="../css/style.css">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
我在终端中不断遇到同样的错误:
获取 /css/style.css 404 1.542 毫秒 - 152
我将 VS Code 与实时服务器一起使用。
注意:当我将 index.html 文件放在父文件夹中的 src 文件夹之外时。路径 href="css/style.css" 有效。