NameとIntroductionの編集欄を、labelとtext_field(area)が横並びになるようにしたいです。
display:inline-blockを利用したいのですが、うまくできません。
以下はcssの編集を加えていないコードです。
users/edit.html.erb <%= render 'shared/header' %> <h2 class="header-space">User info</h2> <%= form_for(@user) do |f| %> <div class="field"> <%= f.label :Name %><br/> <%= f.text_field :name, autofocus: true, autocomplete: "name" %> </div> <div class="form-group has-icon user-edit"> <label class="control-label sr-only" for="inputEmail">Image</label> <%= f.attachment_field :profile_image, placeholder: "Image", class: "user-edit-form" %> </div> <div class="field user-edit"> <%= f.label :Introduction %><br/> <%= f.text_area :introduction, autofocus: true, autocomplete: "introduction" %> </div> <div class="actions"> <%= f.submit "Update" %> </div> <% end %> <%= render 'shared/footer' %>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/01/05 16:43