link_toにある下線を消したいのですが
text-decoration:none; が反映されません。
どのようにしたらよろしいでしょうか?
クラス名.article-titleにある下線を消したいです。
試した事
= tweet.titleにクラス名を付けたがシンタックスエラーが出る。
例(= tweet.title,class: "title")
haml
1.Sign-in 2 .Top 3 - @tweets.each do |tweet| 4 .article 5 = link_to tweet_path(tweet.id) ,class: "article-link" do 6 = image_tag tweet.image.url,class: "article-uplord-image" 7 %br/ 8 .article-title 9 = tweet.title 10
scc
1.Sign-in{ 2 margin: 0px 80px 0px 80px; 3 height: 1000px; 4 background-color: white; 5} 6.Top{ 7 padding-top: 30px; 8 margin: 40px 30px 0px 30px; 9 display: flex; 10 justify-content: center; 11} 12.article{ 13 width: 200px; 14 height: 200px; 15 margin: 0px 10px 0px 10px; 16} 17.article-uplord-image{ 18 width: 200px; 19 height: 150px; 20} 21.article-title{ 22 text-align: center; 23 text-decoration:none; 24}
回答1件
あなたの回答
tips
プレビュー