Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここにあるcssファイルに背景画像を含めようとしています:
public_html/css/folder/style.css
画像は次の場所にあります
public_html/img/image.png
使ってみた
background: url("../img/image.png");
どうすればそのイメージにたどり着くことができますか?
ありがとうございました
ディレクトリ構造を 2 ステップ上に移動する必要があります。
background: url("../../img/image.png");