LoginSignup
2
3

More than 1 year has passed since last update.

[Rails]text_areaのサイズ変更方法3つ

Last updated at Posted at 2021-04-29

公式ドキュメントは以下になります。

サイズ変更方法

サイズ変更は以下のように記述する

size

<%= f.text_area :body ,  class: 'form-control',size: "20x10"%>

cols(横幅)

<%= f.text_area :body ,  class: 'form-control', cols="40"%>

rows(縦幅)

<%= f.text_area :body ,  class: 'form-control', rows: 25%>
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3