迷い人

日々勉強。勉強の先に何か見つかるといいなぁ

【問題】text-decorationの適用について

問題

aタグで表示するリンクのアンダーラインを消すために「text-decoration」を設定しましたが、うまくいきませんでした。その原因と対処策について説明して下さい。

 

前提条件:Ruby on Railshamlを使用

 

html.haml

%html %head 省略 %body .content .text-deco-none = link_to "aタグテスト", testlink_path

 

scss

.content { padding: 50px; } .text-deco-none { text-decoration: none; }

 

表示:アンダーラインが消せない

f:id:oyaoya1123:20191210122217p:plain


回答

【回答】text-decorationの適用について - 迷い人