how does the path work in css and js

前端 未结 4 1652
滥情空心
滥情空心 2021-01-25 08:30

These days I meet so many problems about the path in css and js. And after a few tests,I can not have a exact answer,so i ask here for help.

1 The

4条回答
  •  悲哀的现实
    2021-01-25 09:01

    Well

    body{backgorund-image:url(img/bg.gif);}
    

    is saying look in this directory for a folder img and the file bg.gif

    You want to go back one parent directory.

    body{backgorund-image:url(../img/bg.gif);}
    

提交回复
热议问题