0

私は助けが必要です。CSS/HTML を始めたばかりで、以前は css を使用して Web サイトのヘッダー 1 ページのコンテンツの色を変更できました。今、まったく同じコード行を試してみましたが、真っ黒のままです。

HTMLは次のとおりです。

<!DOCTYPE HTML>
<html lang = "en">
<head>
<title>Pacific Trails Resort</title>
<link rel ="stylesheet" href="pacific.css">
<meta charset="utf-8">
</head> 
<body>
<h1>Pacific Trails Resort</h1>
<div id="nav"><b>
<a href ="index.html">Home</a>&nbsp;&nbsp;
<a href ="yurts.html">Yurts</a>&nbsp;&nbsp;
<a href ="activities.html">Activities</a>&nbsp;&nbsp;
<a href ="reservations.html">Reservations</a>&nbsp;&nbsp;
</b></div>
<div id ="content">
<h2>Enjoy Nature In Luxury</h2>
<p><span class="resort">Pacific Trails Resort</span> offers a special lodging experience on the California North Coast.Relax 
in sereninty with panoramic views of the Pacific Ocean.</p>
<ul>
<li>Private yurts with decks overlooking the ocean
<li>Activities lodge with fireplace and gift shop
<li>Nightly fine dining at the Overlook Cafe
<li>Heated outdoor pool and whirlpool
<li>Guided hiking tours of the redwoods
</ul>
<div id="contact">
<span class="resort">Pacific Trails Resort</span>
<br>12010 Pacific Trails Road
<br>Zephyr, CA 95555
<br>
<br>888-555-5555
</div>
<div id="contact"><small><i>
Copyright &copy; 2011 Pacific Trails Resort
<br><a href= "mailto:nathan@griffin.com"> nathan@griffin.com</a>
</i></small></div>
</div>
</body>
</html>

そして、これがCSSファイルです(w3 Webサイトで検証済み)

body{
    color: #666666;
    background-color: #ffffff;}
h1{
    color: #000033;
    background-color: #ffffff;
    margin-bottom: 0;}
nav{
    background-color: #90c7e3;}
h2{
    color: #3399cc;}
dt{
    color: #000033;}
.resort{
    color: #000033;}

誰かが私が間違っている場所を教えてくれますか

4

2 に答える 2

3

変化する:

nav { ... }

に:

#nav { ... }
于 2013-03-08T11:40:46.173 に答える
0

私には問題ないようです。

に設定していることに注意してください。#000033これは非常に濃い青です (正しく適用されますが、黒に似ているため見落とされる可能性があります)。

任意に別の色 (つまり#BADA55) に変更しても、問題なく動作し、見やすくなっています。

于 2013-03-08T11:38:42.443 に答える