在index.html中引用外部css样式,需要索引css文件路径,但是css文件可能在不同目录下,需要根据具体情况写路径。
【情况1】css文件在同一个目录下,直接写文件名即可
<link rel="stylesheet" type="text/css" href="style.css" />
或者这样写,文件名前缀 ./ 代表当前目录下
<link rel="stylesheet" type="text/css" href="./style.css" />
【情况2】索引的文件在上级目录中,则需要前缀 ../ 代表上一级目录
<link rel="stylesheet" type="text/css" href="../style.css" />
如果在上好几级目录中,则需要知道具体在第几级目录,打几个 ../ 其实就相当于从index开始返回到上级目录再进入到css文件所在的目录
<link rel="stylesheet" type="text/css" href="../../style/style.css" />