method
text_area_tag

text_area_tag(name, content = nil, options = {})
public
Creates a text input area.
Options:
- :size - A string specifying the dimensions of the textarea.
# Outputs <textarea name="body" id="body" cols="25" rows="10"></textarea> <%= text_area_tag "body", nil, :size => "25x10" %>