text-decoration: none;が反映されない
解決したいこと
CSSの、text-decoration: none;を指定箇所に反映させたいです。
少しrailsの要素もはいるかもしれません。
該当するソースコード
下記のタイトルに反映させたい。
<thead>
<tr>
<th scope="col"><%= sort_order "name", "タイトル" %></th>
<th scope="col"><%= sort_order "price", "金額" %></th>
<th scope="col"><%= sort_order "created_at", "追加日" %></th>
</tr>
</thead>
sort_orderはヘルパーメゾットを使用しています。
module ContentsHelper
def sort_order(column, title)
direction = (column == sort_column && sort_direction == 'asc') ? 'desc' : 'asc'
link_to title, { sort: column, direction: direction }
end
end
検証ツールを確認するとこちらが反映されています。
element.style {
}
user agent stylesheet
a:-webkit-any-link {
color: -webkit-link;
cursor: pointer;
text-decoration: underline;
}
html {
color: #000;
background: #FFF;
}
自分で試したこと
thead、tr、thに全てclassを指定して、text-decoration: none;をつけたが反映されない。
divで囲んでclassを指定したが、うち消されてしまい、a:-webkit-any-linkが適用されてしまいます
0