html如何相对路径

时间:2017-03-02 22:19:53

标签: html css

如何使用相对链接从thispage.html到thepage.css

public_html
  ├── folder1
  |    |__subfolder
  |          |__thatpage.css
  ├── folder2
  │   |__subfolder
  |          |__thispage.html

我试过这个

<link href="../../folder1/subfolder/thatpage.css" rel="stylesheet">

2 个答案:

答案 0 :(得分:1)

您正在使用(文档相对路径),仅当网站位于服务器或MAMP等本地服务器环境时才有效。但是你可以使用(root相对路径),如/folder1/subfolder/thatpage.css。

希望这有帮助!

答案 1 :(得分:0)

从给定的文件夹结构中,您尝试过的应该有效。

或者,您可以从/开始使用绝对路径。这将从域的根开始,例如

/folder1/subfolder/thatpage.css

相当于

http://example.com/folder1/subfolder/thatpage.css