私は、デスクトップに「New_Website」という名前の「root」フォルダがあるとします。私は4つのサブフォルダを持っています。 main_files、website_images、website_others、website_stylesheetsにあります。CSSを使用してイメージへの相対パスを定義する:background-image url
website_stylesheetsにstylesheet.cssが含まれていて、ウェブサイトの画像にrandomimg.jpgが含まれている場合、CSS - background-image:url(相対パス)を使用してstylesheet.cssからrandomimg.jpgに移動します。 ?内部(
index.html
(main_files
フォルダ内)
<html>
<head>
<link rel="stylesheet" type="text/css" href="C:\Users\...\Desktop\New_Website\website_stylesheets\stylesheet.css">
</head>
<body>
<div></div>
</body>
</html>
stylesheet.css
:
'背景画像:のURL( '../ website_images/randomimg.jpg');' –
ロジックがそれを思うだろう。これは動作しないようですが、 – Dylan
あなたのブラウザのコンソールに何かエラーがありますか? –