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.
デザイナーに html/css を実行してもらい、いくつかのコードを更新しているときに、次のことに気付きました。
imgタグは画像へのパスを参照するだけです:
img
<img src="/images/pic.png">
ただし、css (backgroundタグ付き) の場合は、URL を使用して指定します。
background
header { height: 73px; background: url(/assets/maudi/nav.png); }
の重要性はurl何ですか?
url
HTML には、「URL など」を受け入れる場所がありません。
CSSはそうです。プロパティはそのbackground代表的な例です。
background: blue;
blue色ですか、それとも相対 URL ですか?
blue