header にborder-bottomを画面横幅いっぱいに広げたいのですが
box-sizing:border-boxを使ってもうまくいきませんでした
お手数おかけします。
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" href="stylesheet.css"> <link href="https://use.fontawesome.com/releases/v5.8.0/css/all.css" rel="stylesheet"> </head> <body> <header> <div class="container"> <div class="header-left"> <a class="header-logo"><i class="fab fa-airbnb"></i></a> <div class="header-list"> <ul> <li>概要</li> <li>準備</li> <li>安全</li> <li>マネープラン</li> </ul> </div> </div> <div class="header-right"> <button type="button" name="button" class="st-btn">はじめる</button> </div> </div> </header> </body> </html>
header { display: flex; height: 75px; border-bottom: solid 1px; box-sizing: border-box; max-width: 100%; } .container { display: flex; justify-content: space-between; width: 100%; align-items: center; } .header-left { display:flex; padding-left: 25px; align-items: center; } .header-logo { font-size: 2.5rem; } .header-left ul{ display:flex; list-style: none; } .header-right { margin-right: 90px; } button{ background-color: red; border: none; cursor: pointer; outline: none; padding: 6px 15px; appearance: none; border-width: inherit; border-radius: 5px; color: white; font-weight: bold; }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/08 02:49