.wrapper{ display: flex; height: 100%; width: 100%; padding-top: 50px; .index{ display: flex; flex-direction: column; padding-left: 20px; padding-top: 20px; line-height: 50px; } .right_box{ height:100%; width: 33%; &_bar{ padding-left: 30px; &_name{ display:flex; justify-content:space-evenly; margin-top: 10px; border-bottom: solid 1px black; } } } } ```投稿内容に対する「編集・削除」をプルダウン形式で選択できるようにしたいんですが、 この V というアイコンの中に文言を納めたいですが、下記のコードだと、画像のように飛び出してしまいます。 (削除の左上に白い V があります) よろしくお願いします。 ```RUBY .right_box_bar -@posts.each do |post| .right_box_bar_name =link_to post.name,post_path(post.id),method: :get .right_box_bar_name_select %span= image_tag 'arrow_top.png' %ul.right_box_bar %li =link_to"削除",post_path(post.id),method: :delete, class:'destoroy_btn' %li =link_to"編集",edit_post_path(post.id), class:'edit_btn'
あなたの回答
tips
プレビュー