我将图像添加到名为“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/
总结以上是内存溢出为你收集整理的html – 另一个文件夹中的CSS图像全部内容,希望文章能够帮你解决html – 另一个文件夹中的CSS图像所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)