Rails text_area size

前端 未结 3 1926
清酒与你
清酒与你 2021-01-31 07:19

I have a text_area inside a fields_for, which is inside a form_for.

<%= day_form.text_area :hatch %>
3条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-31 07:33

    For responsiveness I like to make the text area width 100% :

    <%= f.text_area :description, :rows => 10, style: 'width:100%;' %>

提交回复
热议问题