我有一个index.html
文件,其文件结构为fl/contact/thanks/index.html
我的CSS文件夹具有以下文件结构:fl/css/style.css
如何定位style.css
文件,使其影响具有当前文件结构的index.html
文件?
这是它目前设定的目标:
<link rel="stylesheet" type="text/css" href="css/style.css">
答案 0 :(得分:4)
如果您在服务器上,则可以这样做:
<link rel="stylesheet" type="text/css" href="/css/style.css">
这假定&#39; fl&#39;是根。
答案 1 :(得分:1)
您应该能够像这样引用它:
<link rel="stylesheet" type="text/css" href="../../css/style.css">
答案 2 :(得分:0)
<link rel="stylesheet" type="text/css" href="../../css/style.css">
路径上层的每个“..”。
答案 3 :(得分:-1)
<link rel="stylesheet" type="text/css" href="../../../css/style.css" />
这应该是index.html的新途径。
答案 4 :(得分:-1)
你可以这样做:
更新回答
<link rel="stylesheet" type="text/css" href="../../css/style.css" />