headerがmain-image-wrapperに重なって出力されてしまいます
headerだけで実行した場合はうまく行くのですが何がおかしいのでしょうか
タグが入れ子になっていないかは確認して、調べましたがわかりません
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="mosha2.css"> <title>Document</title> </head> <body> <header> <div class="container"> <div class="header-left"> <img class="logo" src="https://prog-8.com/images/html/advanced/main_logo.png"> </div> <div class="header-right"> <a href="#" class="login">ログイン</a> </div> </div> </header> <section class="main-image-wrapper"> <div class="main-image-container"> <div class="face-image"></div> <div class="price-image"></div> </div> </section> </body> </html>
.header { height: 120px; width: 100%; background-color: rgba(34, 49, 52, 0.9); } .logo { width: 124px; margin-top: 20px; } .header-left { float: left; } .header-right { float: right; background-color: rgba(255, 255, 255, 0.3); transition: all 0.5s; } .header-right:hover { background-color: rgba(255, 255, 255, 0.5); } .header-right a { line-height: 65px; padding: 0 25px; color: white; display: block; } .main-image-wrapper { background-image: url(https://www.linguage-school.jp/wp-content/themes/linguage/img/lp/bg-cover-pc.jpg); background-size:cover; width: 1400px; height:500px; }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/22 01:19