1

私は初心者で、レールとブートストラップを使用してアプリを開発しています。これを使用して、フォームにフィールドを生成しています。

<%= d.text_field :email, :placeholder => "email" %>
<%= text_field_tag 'doctor[name][]', nil, :placeholder => "name" %>

それは完全に機能しますが、高さのサイズを変更したいと思います。私はグーグルで検索しましたが、適切な答えが見つかりませんでした。

誰もこの問題に直面しましたか?

4

1 に答える 1

1

If you're using bootstrap v2, you should add this:

<%= d.text_field :email, :placeholder => "email", :class => "span5" %>

Note that the number in span class is referred to the size that you want to put.

If you're using this new bootstrap (v3 rc), you should check this page

于 2013-08-10T16:25:43.917 に答える