5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

railsのformをbootstrapで実装する

Posted at

フォームの作り方
(1)form_forの上に<div class="form-horizontal" role="form">を入れ、</div>を<% end %>の下につける
(2)各項目(名前など)を <div class="form-group"> で囲む
(3)labelには、カンマのあとに:class => "col-sm-3 control-label"を付け加え、
inputには、 まず

で囲み、<%= %>のなかにclass="form-control"を付け加える。

##参照
https://sites.google.com/site/rubyonrailsapps/view_tips/railsnoformwobootstrapde-shi-zhuangsurutoki

5
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
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?