参考链接似乎没有连接到CSS

时间:2014-04-07 05:42:02

标签: html css

如果我的目录设置如下:

projectfolder/
   wsgi/
     openshift/
         templates/
            home/
              simple-sidebar.html
     static/
         css/
            bootstrap.css
         fonts/
         js/

为什么我的simple-sidebar.html参考链接不起作用?:

<link href= "../../../static/css/bootstrap.css" rel="stylesheet">

我做错了什么?有更好的方法吗?

3 个答案:

答案 0 :(得分:1)

这样做:

<link href= "/wsig/static/css/bootstrap.css" rel="stylesheet">

这是绝对的网址。

如果你想按自己的方式行事,你必须这样做:

<link href= "../../../../static/css/bootstrap.css" rel="stylesheet">

答案 1 :(得分:0)

如果您在home文件夹中,

这应该有用,

<link href= "/wsig/static/css/bootstrap.css" rel="stylesheet">

记住,

/  - denotes the current directory you are in 
./ - one step outside the current directory   
../ - two steps outside the directory 

希望这会有所帮助!!

答案 2 :(得分:0)

这可能对你有帮助。

<link href= "../static/css/bootstrap.css" rel="stylesheet">