前提・実現したいこと
WEB制作を独学で勉強中です
背景画像が設定できません
発生している問題・エラーメッセージ
HTMLファイル2ページ分の設定を1つのcss外部ファイルで行っているんですが
1ページ目はうまく背景設定できたのですが、
2ページ目の背景画像設定だけできません
エラーメッセージ
### 該当のソースコード ```ここに言語名を入力 HTML、css ソースコード @charset "utf-8"; body { margin: 0; padding: 0; background-color: #cccccc; font-size: 15px; line-height: 2; } p,h1,h2,h3,h4,h5,h6, { margin-top: 0; } img { vertical-align: bottom; } ul { margin: 0; padding: 0; } a { color: #3583aa; text-decoration: none; } a:visited { color: #788d98; } a: hover { text-decoration: underline; } header { width: 960px; height: 100px; margin: 0 auto; } .logo { float: left; margin-top: 50px; } .global-nav { float: right; margin-top: 60px; } .global-nav li { float: left; margin: 0 20px; font-size: 20px; list-style: none; font-family: 'Bitter',serif; } .global-nav li a { color: #ffffff; } .global-nav li a:hover { border-bottom: 2px solid #ffffff; padding-bottom: 3px; text-decoration: none; } #wrap { clear: both; } .content { width: 960px; margin: 0 auto; } footer { text-align: center; color: #ffffff; padding: 20px 0; } footer small { font-size: 12px; } #index h1 { font-size: 100px; line-height: 1; color: #ffffff; font-family: 'Bitter',serif; margin-bottom: 50px; } #index .content { margin-top: 150px; } #index p { font-size: 16px; color: #ffffff; } .btn a { background-color: #009cd3; color: #ffffff; font-size: 20px; font-family: 'Bitter',serif; width: 185px; display: block;; text-align: center; line-height: 50px; margin-top: 20px; border-radius: 5px; border: 3px solid #009cd3; } .btn a: hover { text-decoration: none; background-color: #ffffff; color: #009cd3; } #index footer { width: 960px; margin: 150px auto 0 auto; text-align: left; } #index { background-image: url(../images/index.jpg); background-repeat: no-repeat; background-position: center center; background-attachment: fixed; background-size: cover } #about { background-image: url(../images/bg-about.jpg); background-repeat: no-repeat; background-position: center top; background-attachment: fixed; background-size: 100% auto; } ### 試したこと link 設定は背景画像以外は設定できるのでできていると思い コードの書き間違いはちゃんと設定できている1ページ目のコードをコピペしてパスも書き換えたと思います。 どのようなことができてないのかもわからなくなってきました 考えをお聞かせください。 ### 補足情報(FW/ツールのバージョンなど) ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー