前提・実現したいこと
お世話になります。
Progateの道場コース初級編を勉強しています。
「お問い合わせ」の高さが見本通りにならず、躓いています。
答えと照らし合わせてみたり、1から打ち直してみたりしたのですが、誤りを見つけることができません。
お手数ですが、教えて頂けないでしょうか。
よろしくお願いいたします。
該当のソースコード
自分が書いたコード(HTML)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Progate</title> <link rel="stylesheet" href="stylesheet.css"> </head> <body> <!-- ここからHTMLを書き始めてください --> <header> <h1 class="logo-title">Progate</h1> <div class="logo-list"> <ul> <li>プログラミングとは</li> <li>学べるレッスン</li> <li>お問い合わせ</li> </ul> </div> </header> <div class="main"> <div class="top"> <h1>HELLOWORLD<span>.</span></h1> <h2>プログラミングの世界へようこそ</h2> </div> <div class="contents-wrapper"> <h3 class="section-title">学べるレッスン</h3> <div class="contents-item"> <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/html.svg "> <p>HTML & CSS</p> </div> <div class="contents-item"> <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/php.svg"> <p>PHP</p> </div> <div class="contents-item"> <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/ruby.svg"> <p>Ruby</p> </div> <div class="contents-item"> <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/swift.svg"> <p>Swift</p> </div> </div> <div class="contact-form"> <h3 class="section-title">お問い合わせ</h3> <p>メールアドレス(必須)</p> <input> <p>お問い合わせ内容(必須)</p> <textarea></textarea> <p>※必須項目は必ずご入力ください</p> <input class="submit" type="submit" value="送信"> </div> </div> </body> </html>
自分が書いたコード(CSS)
/* CSSのリセット(消さないでください) */ /* CSSのリセット(消さないでください) */ html, body, ul, ol, li, h1, h2, h3, h4, h5, h6, p, form, input, div { margin: 0; padding: 0; } body { font-family: "Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif; } li { list-style: none; } /* ここからCSSを記述してください */ header{ background-color:#26d0c9; color:#fff; height:90px; } .logo-title{ font-size:36px; float:left; padding:20px 40px; } .logo-list li{ float:left; padding:33px 20px; } .main{ margin:100px 80px; } .top h1{ font-size:140px; } .top span{ color:#ff4a4a; } .top h2{ font-size:60px; } .contact-wrapper{ height:500px; } .section-title{ padding-top:100px; font-size:28px; border-bottom:2px solid #dee7ec; padding-bottom:15px; margin-bottom:50px; } .contents-item{ float:left; margin-right:40px; } .contents-item p{ font-size:24px; padding-bottom:100px; margin-top:30px; } .contact-form{ clear:both; } input,textarea{ width:400px; margin-top:10px; margin-bottom:30px; padding:20px; border:1px solid #dee7ec; } .submit{ font-size:18px; background-color:#dee7ec; color:#889eab; }
見本(HTML)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Progate</title> <link rel="stylesheet" href="stylesheet.css"> </head> <body> <!-- ここからHTMLを書き始めてください --> <div class="header"> <div class="header-logo">Progate</div> <div class="header-list"> <ul> <li>プログラミングとは</li> <li>学べるレッスン</li> <li>お問い合わせ</li> </ul> </div> </div> <div class="main"> <div class="copy-container"> <h1>HELLO WORLD<span>.</span></h1> <h2>プログラミングの世界へようこそ</h2> </div> <div class="contents"> <h3 class="section-title">学べるレッスン</h3> <div class="contents-item"> <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/html.svg"> <p>HTML & CSS</p> </div> <div class="contents-item"> <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/php.svg"> <p>PHP</p> </div> <div class="contents-item"> <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/ruby.svg"> <p>Ruby</p> </div> <div class="contents-item"> <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/swift.svg"> <p>Swift</p> </div> </div> <div class="contact-form"> <h3 class="section-title">お問い合わせ</h3> <p>メールアドレス(必須)</p> <input> <p>お問い合わせ内容(必須)</p> <textarea></textarea> <p>※必須項目は必ずご入力ください</p> <input class="contact-submit" type="submit" value="送信"> </div> </div> </body> </html>
見本(CSS)
/* CSSのリセット(消さないでください) */ html, body, ul, ol, li, h1, h2, h3, h4, h5, h6, p, form, input, div { margin: 0; padding: 0; } body { font-family: "Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif; } li { list-style: none; } /* ここからCSSを記述してください */ .header { background-color: #26d0c9; color: #fff; height: 90px; } .header-logo { float: left; font-size: 36px; padding: 20px 40px; } .header-list { float: left; } .header-list li { float: left; padding: 33px 20px; } .main { padding: 100px 80px; } .copy-container h1 { font-size: 140px; } .copy-container h2 { font-size: 60px; } .copy-container span { color: #ff4a4a; } .contents { height: 500px; margin-top: 100px; } .section-title { border-bottom: 2px solid #dee7ec; font-size: 28px; padding-bottom: 15px; margin-bottom: 50px; } .contents-item { float: left; margin-right: 40px; } .contents-item p { font-size: 24px; margin-top: 30px; } .contact-form { padding-top: 100px; } input, textarea { width: 400px; margin-top: 10px; margin-bottom: 30px; padding: 20px; font-size: 18px; border: 1px solid #dee7ec; } .contact-submit { background-color: #dee7ec; color: #889eab; }
回答2件
あなたの回答
tips
プレビュー