Will somebody plz explain why this is a valid path?
../../../../common_CSS/firefox1024.css
limbo
8:44 am on May 19, 2005 (gmt 0)
The file itself is 4 folders deep so it has to exit those before entering common_CSS to reach firefox1024.css.
wheel
12:47 pm on May 19, 2005 (gmt 0)
the ..'s mean the parent directory to where you currently are. So that path means, starting from your current directory, go up 4 directories, then back down into Commons_css to get the file.
This is a relative path and where you end up will depend on where you started.