Railsでフォームタグを作成して、そこにクラス名を付与し、そのクラス名をcssで指定し試しにcolor: red;を指定してあげましたが、どのcssファイルにも、cssが反応してくれません。下記に使用したコードを載せておきます。確認とご助言、ご教授お願いします!フォームのファイルは、_form.html.hamlというファイルに記載しました。また、viewファイルは、このような構造になっています。リンク内容
また、cssファイルは、下記リンクのような構造になっており stylesheetのどのファイルにもsクラスのcolor: redという記載をしています。リンク内容
どなたか、ご助言、ご教授よろしくお願いします!
_form.html.haml
Rails
1= form_with(model: article, local: true) do |form| 2 - if article.errors.any? 3 #error_explanation 4 %h2 5 = pluralize(article.errors.count, "error") 6 prohibited this article from being saved: 7 %ul 8 - article.errors.full_messages.each do |message| 9 %li= message 10 .field 11 = form.label :post_date,{class: 's'} 12 = form.date_select :post_date,{class: 'a'} 13 = form.label :title,{class: "i"} 14 = form.text_field :title,{class: "u"} 15 .field 16 = form.label :content,{class: "e"} 17 = form.text_area :content,{class: ""} 18 .actions 19 = form.submit class: "a"
cssファイル
.s { color: red; }
あなたの回答
tips
プレビュー