link_toの下線を消したいのに上手くいきません。
text-decoration: none;で当てはまるクラス全てに試したが出来たかったです。
試したクラス名
more
ul
li
どのようにすればよろしいでしょうか?
haml
1.Tweet-show 2 .Tweet-show-article 3 .Tweet-show-title 4 = @tweet.title 5 .Tweet-show-image 6 = image_tag @tweet.image.url,class: "Tweet-show-img" 7 %br 8 .Tweet-show-text 9 = @tweet.text 10 - if user_signed_in? && current_user.id == @tweet.user_id 11 .more 12 %ul.more_list 13 %li 14 = link_to '編集', edit_tweet_path(@tweet.id), method: :get 15 %li 16 = link_to '削除', tweet_path(@tweet.id), method: :delete 17 %li 18 = link_to 'カレンダーに投稿する', new_blog_path(id: @tweet.id)
css
1.Tweet-show{ 2 padding: 100px 80px 0px 80px; 3 width: 100%; 4} 5.Tweet-show-article{ 6 text-align: center; 7} 8 9.Tweet-show-title{ 10 color: #7f7f7f; 11 font-size: 20px; 12 margin-bottom: 20px; 13} 14.Tweet-show-image{ 15 16} 17.Tweet-show-img{ 18 width: 400px; 19} 20.Tweet-show-text{ 21 color: #7f7f7f; 22} 23 24.more{ 25 ul{ 26 li{ 27 font-size: 20px; 28 } 29 } 30}
回答2件
あなたの回答
tips
プレビュー