application.scss没有样式化输入,textarea,select

时间:2017-12-28 14:03:20

标签: html css ruby-on-rails ruby

我正在使用railstutorial.org在rails上学习ruby,我在列出7.15 / 7.16时遇到问题 秀.. 这是回购 repo

如果我将application.css中的样式添加到users / new.html.erb中的form_for,我有这个 enter image description here

我们看到custom.css没有样式化输入,textarea,select 用户/ new.html.erb

<% provide(:title, 'Sign up') %>
<h1>Sign up</h1>

<div class="row">
  <div class="col-md-6 col-md-offset-3">
    <%= form_for(@user) do |f| %>
      <%= f.label :name %>
      <%= f.text_field :name %>

      <%= f.label :email %>
      <%= f.email_field :email %>

      <%= f.label :password %>
      <%= f.password_field :password %>

      <%= f.label :password_confirmation, "Confirmation" %>
      <%= f.password_field :password_confirmation %>

      <%= f.submit "Create my account", class: "btn btn-primary" %>
    <% end %>
  </div>
</div>

如何解决?

1 个答案:

答案 0 :(得分:0)

我认为您的自定义css文件未加载。使用以下步骤:

将CSS文件放在public / stylesheets中,然后使用:

链接到视图中的布局或erb文件中的样式表。