1
私はCodeAcademyから独自のレジュームプロジェクトをビルドすることを再現しようとしていますが、ヘッダーのスタイリングに問題があります。何らかの理由で、h1タグとh2タグの周りに私の望む背景色を置くだけですが、dlタグの周りには置かないでしょう。また、私が組み込んだtwitterブートストラップリンクは私のページでは動作しません。どちらの問題についても助けてください。ここでTwitterのブートストラップとCSSのヘッダークラスのフォーマット
は私のHTMLです:
<!DOCTYPE html>
<html>
<head>
<title>
Parker Preyer's Resume
</title>
<link rel="stylesheet"href="style.css" />
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" />
</head>
<body>
<div class="header">
<h1>
Parker J. Preyer
</h1>
<h2>
"I'm learning how to design websites!"
</h2>
<dl>
<dt>
Email
</dt>
<dd>
[email protected]
</dd>
<dt>
Phone
</dt>
<dd>
919-740-4206
</dd>
<dt>
Address
</dt>
<dd>
1042 Clay Street, San Francisco, CA
</dd>
</dl>
</div>
</body>
</html>
Here is my CSS:
body, .details {
background: #ccc;
}
.header {
background: #222;
color: white;
}
dl dd {
color:white;
}
.header h1 {
font-size: 42px;
}
.header h2 {
font-family: "Georgia", Serif;
font-weight: normal;
font-style: italic;
color: #666;
}
dlの周りにはどのような色が欲しいですか? – frontendzzzguy