前提・実現したいこと
初めて質問させていただきます。
htmlとcssでヘッダーの作成をしているのですが、header2という大枠の中に4つの要素を入れ込み、うまく調整しようとしていたのですが、最後の4つ目の要素のところで検索マークのアイコンと文字が横並びになっているので、そこの中でもdivでくくったのですが、その時にhoverの効く範囲が右端まで到達しませ。そこで右端いっぱいにhoverが効くように実現したいと考えています。
発生している問題・エラーメッセージ
html <div class="header2"> <div class="header2_1"> <div class="header2_line1"> <a href="#">ロケーション<br><span>行き先はどちらですか?</span></a> </div> </div> <div class="header2_2"> <div class="header2_line2"> <a href="#">チェックイン<br><span>日時を入力</span></a> </div> </div> <div class="header2_3"> <div class="header2_line3"> <a href="#">チェックアウト<br><span>日時を入力</span></a> </div> </div> <div class="header2_4"> <div class="header2_4_con"> <a href="#">人数<br><span>ゲスト数を入力</span><i class="fas fa-search"></i></a> </div> </div> </div>
該当のソースコード
css
1.header2{ 2 background-color: #fff; 3 width: 850px; 4 margin: 40px auto 0 auto; 5 border-radius: 32px; 6 height: 65px; 7 display: flex; 8} 9.header2 a{ 10 color: black; 11 display: block; 12 font-size: 12px; 13 font-weight: bolder; 14 border-radius: 32px; 15} 16.header2 div p{ 17 color: #e8e8e8; 18 font-weight: bolder; 19} 20.header2 span{ 21 font-size: 14px; 22 color: #717171; 23 font-weight: lighter; 24} 25.header2_1 a{ 26 padding: 14px 80px 14px 32px; 27} 28.header2_2 a{ 29 padding: 14px 70px 14px 32px; 30} 31.header2_3 a{ 32 padding: 14px 60px 14px 32px; 33} 34.header2_4 a{ 35 padding: 14px 91px 14px 32px; 36} 37.header2_line1{ 38 height: 32px; 39 position: relative; 40} 41.header2_line1::after{ 42 content: ""; 43 border-right: 1px solid #ddd; 44 height: 32px; 45 margin-top: 14px; 46 position: absolute; 47 top: 0; 48 right: 0; 49} 50.header2_line2{ 51 height: 32px; 52 position: relative; 53} 54.header2_line2::after{ 55 content: ""; 56 border-right: 1px solid #ddd; 57 height: 32px; 58 margin-top: 14px; 59 position: absolute; 60 top: 0; 61 right: 0; 62} 63.header2_line3{ 64 height: 32px; 65 position: relative; 66} 67.header2_line3::after{ 68 content: ""; 69 border-right: 1px solid #ddd; 70 height: 32px; 71 margin-top: 14px; 72 position: absolute; 73 top: 0; 74 right: 0; 75} 76.header2_4_con{ 77 display: flex; 78 position: relative; 79 align-items: center; 80 padding-right: 10px; 81} 82.header2_4 i{ 83 color: white; 84 padding: 15px; 85 font-size: 18px; 86 background-color: #FF385D; 87 border-radius: 50%; 88 position: absolute; 89 top: 50%; 90 right: 5px; 91 transform: translateY(-50%); 92} 93.header2 a:hover{ 94 background-color: #ddd; 95}
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー