开发者

Increasing font size in rails collection_select

开发者 https://www.devze.com 2023-02-28 11:10 出处:网络
How do I increase the font size in collection_select dropdown box for a rails app开发者_JS百科? I imagine this could be up with CSS.The collection_select method allows you to specify an html options,

How do I increase the font size in collection_select dropdown box for a rails app开发者_JS百科?

I imagine this could be up with CSS.


The collection_select method allows you to specify an html options, such as an html class name, e.g.:

collection_select(:user, :title, UserTitle.all, :id, :name, {:prompt=>true}, {:class=>'my-custom-class'})

Then, you can style it with CSS:

.my-custom-class { font-size: 110%; }
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号