bootstrapを使用してドロップダウンメニューをつくりたいのですが、画像のように,ナビゲーションアイテムが
ボタン(Dropdown button)部分に納まらない状態です。ご指摘願います。
<application.html.erb>
,,,,,, <header> <%#div class="flex-contents"%> <%= link_to 'JoinApp3', root_path, :style=> "font-size:30px;" %> <div class="dropdown"> <button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-bs-toggle="dropdown" aria-expanded="false"> Dropdown button </button> <div class="navbar_item dropdown-menu " aria-labelledby="dropdownMenuButton" > <% if user_signed_in? %> <div class="after_contents"> <%= link_to "ログアウト", destroy_user_session_path, method: :delete, class:"dropdown-item"%> <%= link_to "マイページ" ,profile_mypage_path(id: current_user) %> <%= link_to "コミュニティを作成", new_community_path(id: current_user) %> </div> <%#= link_to '投稿したコミュニティ' , posted_community_mypage_path(id: current_user) %> <%#= link_to 'フォローしたコミュニティ', following_community_mypage_path(id: current_user) %> <%else%> <div class="before_contents"> <%= link_to "ログイン", new_user_session_path, class:"dropdown-item" %> <%= link_to "新規登録", new_user_registration_path, class:"dropdown-item"%> </div> <%end%> </div> </div> </header> ,,,,,
>bootstarp
「ブートストラップ」です。
https://getbootstrap.jp/
回答1件
あなたの回答
tips
プレビュー