I am looking to style form fields using Boostrap CSS.
Below is the code snippet from my form view file:
<p>
<%= f.label :country %>
<%= f.select :country, ["India","USA","Australia"] %>
</p>
I would like the above code to be formatted as:
<select class="form-control">
<option>India</option>
<option>USA</option>
<option>Australia</option>
</select>
I have experimented with different approaches, but without any success.