前提・実現したいこと
実現したいのはhide
発生している問題・エラーメッセージ
発生している問題はdiv-titleのある場所までしかdiv-banner_menueの中のdiv-hideが広がらない
該当のソースコード
html <div class="banner_content"> <div class="banner_title"> <a href="#" class="title_link"> <h1 class="title">S.Tの仕事場</h1> </a> </div> <div class="banner_menu"> <nav class="menu_nav"> <ul class="point_none"> <li> <button type="button" class="nav_button" id="port" onclick="#"> ポートフォリオ </button> <div class="hide"> <p class="pp">あ</p> </div> </li> </ul> </nav> </div> </div> `` css @charset "utf-8"; body{ margin: 0px; } h1{ font-size: 24px; font-weight: bold; } .banner_content{ display: flex; } .banner_title{ margin-right: auto; } .title_link{ text-decoration: none; } .title_link:visited{ color:black; } .title_link:hover{ color: blue; } .title_link:active{ } .banner_menu{ margin-left:auto; display: flex; } .menu_nav{ display:flex; } .point_none{ list-style: none; margin: 0px; display: flex; } .nav_button{ border: none; font-size: 16px; font-weight: bold; background-color: white; height: 100%; border-bottom: double 5px white; } .nav_button:visited{ } .nav_button:hover{ border-bottom: double 5px orange; } .nav_button:focus{ outline: 0px; } .hide{ display: none; } #port:hover + .hide{ display: block; } .hide:hover{ display:block; } .pp{ margin: 0px; } ### 試したこと positionやmargin:clac()などは試してみたけどだめでした ### 補足情報(FW/ツールのバージョンなど) ここにより詳細な情報を記載してください。 html5 css3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/18 10:31