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

前端 未结 10 1231
北海茫月
北海茫月 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 08:12

    You can use the following list as quick reference:

       /   = Root directory
       .   = This location
       ..  = Up a directory
       ./  = Current directory
       ../ = Parent of current directory
       ../../ = Two directories backwards
    

    Useful article: https://css-tricks.com/quick-reminder-about-file-paths/

提交回复
热议问题