我的项目
中有这个结构我有这个页面27.html,所以我必须找到CSS文件,所以我认为正确的路径是:
<link href="../../../css/style.css" rel="stylesheet" type="text/css" />
<link href="../../../css/inner.css" rel="stylesheet" type="text/css" />
但它不起作用,所以我想知道为什么会发生这种情况。
有什么想法吗?
UDPATE: 大家好,这是我的网址: /web/blog/2011/june/27.html
我正在尝试
<link href="/css/style.css" rel="stylesheet" type="text/css" />
但仍未在页面中应用css。
祝你好运, Valter Henrique。
答案 0 :(得分:3)
为什么不直接使用root作为参考?
<link href="/css/style.css" rel="stylesheet" type="text/css">
答案 1 :(得分:0)
您需要从根URL指定路径以使其更容易,前面带有“/”。
<link href="/css/style.css" rel="stylesheet" type="text/css" />
答案 2 :(得分:0)
您只需要两个../
。
试试这个:
<link href="../../css/style.css" rel="stylesheet" type="text/css" />
<link href="../../css/inner.css" rel="stylesheet" type="text/css" />
答案 3 :(得分:0)
您可以随时执行此操作以访问您的网络根目录:
<link href="/css/style.css">
不是摆弄相对路径,而是绝对。
答案 4 :(得分:0)
您的路径看起来不错,您确定CSS文件已上传到您的服务器并且文件名实际上是否正确?
对“..”导航有疑问,请将文件移近并进行一些试验和错误,直至获得它。