我爲我的Rails應用程序使用了Bootstrap 3 gem。 Bootstrap的一個好處是可以通過.form-control
類來改善Rails表單的外觀。在Rails窗體中,Bootstrap 3類不是用於選擇下拉列表
在一種形式中,我有兩個輸入:一個text_field和一個select_field。基於該Bootstrap 3 CSS guide,我應該能夠使用.form-control
類應用的樣式:
<div class="form-group">
<div class="field">
<%= f.label :title %><br>
<%= f.text_field :title, class: "form-control" %>
</div>
</div>
<div class="form-group">
<div><%= f.label :subdomain %><br />
<%= f.select :subdomain, ['ExampleOne.com', `ExampleTwo.com`], class: "form-control" %></div>
</div>
<% end %>
在這種情況下,然而,第一text_field
輸入呈現細如我願意,但選擇是不變的。
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
我沒有看到我是如何設置此功能的差異:在靜態,非Rails的形式,這將根據文檔,像寫。你能發現錯誤嗎?
@darkginger,它解決了你的問題嗎? – Sajan