まず、私はこの前に多くの投稿を見てきましたが、私の正確な状況には一致していません。外部のCSSスタイルシートがリンクされていません
問題:
- 「Lounge.html」「test.css」
- の下を示す「インデックス」htmlファイルは、私がにリンクしようとしている外部の.cssファイルです、また、以下を示して
- "Lounge.html"と "test.css"はどちらも同じフォルダにあります。ルートフォルダ
- すべて「IMG」と「」の要素は、作業順序
- 私はマイクロソフトエッジ、またはInternet Explorerのいずれかで「Lounge.html」を実行すると、スタイルが自分のページに適用されていない中であります。
この外部リンクを有効にしていただきありがとうございます。
よろしく、
AA
h1, h2 {
font-family: sans-serif;
color: gray;
}
h1 {
border-bottom: 1px solid black;
}
p {
font-family: sans-serif;
color: maroon;
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Head First Lounge</title>
<link type="text/css" rel="stylesheet" href="test.css" />
</head>
<body>
<h1>Welcome to the New and Improved Head First Lounge</h1>
<p><img src="images/drinks.gif" alt="Drinks" /></p>
<p>
Join us any evening for refreshing
<a href="beverages/elixir.html">elixirs</a>,
conversation and maybe a game or two of
<em>Dance Dance Revolution</em>.
Wireless access is always provided;
BYOWS (Bring Your Own Web Server).
</p>
<h2>Directions</h2>
<p>
You'll find us right in the center
of downtown Webville. If you need help finding
us, check out our
<a href="about/directions.html">detailed directions</a>.
Come join us!
</p>
</body>
</html>
_ "Microsoft EdgeまたはInternet Explorerで" Lounge.html "を実行すると、スタイルは自分のページに適用されません。" _ - それは他のブラウザでも使用できますか? – Turnip
ブラウザのキャッシュをクリアしようとしましたか? – Jer
また、要素インスペクタコンソールを使用してCSSをトレースしてみてください。 –