html – 另一个文件夹中的CSS图像

前端之家收集整理的这篇文章主要介绍了html – 另一个文件夹中的CSS图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Using relative URL in CSS file,what location is it relative to?8个
我将图像添加到名为“images”的文件夹中,将CSS添加到名为“css”的文件夹中,现在我想使用“images”文件夹中的图像.我该怎么做呢?当我使用它时,它们没有出现:
background: url('/images/bg.jpg');

我也试过这些:

background: url('../images/bg.jpg');
background: url('../../images/bg.jpg');

我应该用什么路径来访问我的图片

解决方法

如果您有如下文件夹结构:
/public_html/
    /css/
    /images/
    /index.html

然后你的CSS应该工作.

  • Starting with “/” returns to the root directory and starts there
  • Starting with “../” moves one directory backwards and starts there
  • Starting with “../../” moves two directories backwards and starts there (and so on…) To move forward,just start with the first
    subdirectory and keep moving forward

在这里阅读更多:http://css-tricks.com/quick-reminder-about-file-paths/

原文链接:https://www.f2er.com/html/226345.html

猜你在找的HTML相关文章