I have a text_area inside a fields_for, which is inside a form_for.
text_area
fields_for
form_for
<%= day_form.text_area :hatch %>
For responsiveness I like to make the text area width 100% :
<%= f.text_area :description, :rows => 10, style: 'width:100%;' %>