-1
enter image description hereこれは私の最初のHTMLプロジェクトです。ここでは#nheader idの背景画像を入れようとしていますが、ブラウザではタバコを切り替えるとその理由がわからないのですか?ヘッダーの背景画像が機能しないのはなぜですか?
<html>
<!--this is the
start html file-->
<head>
<meta keywords="html, laern, teach"/>
<link rel="stylesheet" type="text/css" href="style.css">
<title> this is a website </title>
</head>
<body>
<div id="wrap">
<div id="nheader">
<h1>how to write html5</h1>
<img src="..my demo/images/body.jpg">
</div>
<div id="npara">
<p class="text_para">
Lorem ipsum dolor sit amet, <span class="color">consectetur</span> adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
</p>
</div>
<div id="footer">
<p class="text_para">
this is footer
</p>
</div>
</div>
</body>
<!--here ends th html file -->
</html>
'..my demo/images/body.jpg'は有効なパスではありません。../my demo/images/body.jpg'でしょうが、設定によります。また、パスに空白を使用しないようにしてください。 – moritzg
HTMLとCSSのバリデーターがすべてのWebページ作成で重要な役割を果たす理由についての輝かしい例です。 – Rob
ありがとう、あなたのコメントのRob、 私はすでにあなたが上記の通りにパスを変更しましたが、それは同じ問題です –