尝试从另一个子文件夹

时间:2017-12-02 23:21:48

标签: html css hyperlink

我非常沮丧,呃,我会认为这很简单......也许我错了。

我有一个父文件夹[parent],在我拥有的父文件夹中: index.html [childCSS] [childPAGES] [childJS] [images] index.html链接到[childPAGES] references.html(在文件夹childPAGES中找到references.html) references.html然后链接到[childCSS]中的refCss.css refCss.css对[images] background.gif进行背景图像调用。 然而他们似乎找不到彼此。 我已经确定css的路由没有加载(我做了background-color = #somefunkypurple并且它没有把它涂成紫色)...所以它没有读取css文件。问题是......为什么......

所以html就是这样:

index.html
<head><link rel="stylesheet" type="text/css" src="./childCss/stylesheet.css"/></head>
further down in code
<a href="./childPAGES/ref.html">

现在在childPAGES / ref.html

 <link rel="stylesheet" type:"text/css" src="../../childPAGES/stylesheetB.css"

但是它找不到文件......在文件中:

/childCss/stylesheetB.css 
    background-images: url('../../images/background.gif');

找不到background.gif或显示...我不知道我做错了什么...也许我应该使用href?

1 个答案:

答案 0 :(得分:0)

我认为你在&#34; ../"的过程中走得太远了。

您是否尝试过使用:

link rel="stylesheet" type:"text/css" src="../childPAGES/stylesheetB.css"

background-images: url('../images/background.gif');