How to go up a level in the src path of a URL in HTML?

后端 未结 6 1273
北荒
北荒 2020-11-28 02:06

I am storing style sheets in {root}/styles while images in {root}/images for a website. How do I give the path in the style sheets to go look in the images directory for th

6条回答
  •  春和景丽
    2020-11-28 02:33

    Use ../:

    background-image: url('../images/bg.png');
    

    You can use that as often as you want, e.g. ../../images/ or even at different positions, e.g. ../images/../images/../images/ (same as ../images/ of course)

提交回复
热议问题