What does “./” (dot slash) refer to in terms of an HTML file path location?

前端 未结 10 1232
北海茫月
北海茫月 2020-11-22 07:17

I know ../ means go up a path, but what does ./ mean exactly?

I was recently going through a tutorial and it seems to be referring to just

10条回答
  •  长情又很酷
    2020-11-22 07:58

    ./ is the the folder that the working file is in:

    So in /index.htm ./ is the root directory
    but in /css/style.css ./ is the css folder.

    This is important to remember because if you move CSS from /index.htm to /css/style.css the path will change.

提交回复
热议问题