gpt4 book ai didi

css - 自定义简单表单 Collection_Select

转载 作者:行者123 更新时间:2023-11-28 05:21:54 24 4
gpt4 key购买 nike

我有这个简单的表单,我希望能够使用 CSS 设置下拉菜单的样式。

input_html: { class: "form-dropdown"} 没有改变样式。我如何才能正确地将一个类添加到简单表单 collection_select 以在 css 中设置样式,或者是否有任何其他方法可以设置下拉菜单的样式?

这是我的简单形式:

<%= simple_form_for @document do |f| %>

<%= f.collection_select :category_id, Category.all, :id, :name, {promt: "Choose a category" }, input_html: { class: "form-dropdown" } %>

<%= f.input :title, label: "Title", label_html: { class: 'form-input' } %>

<%= f.input :pdf, label: "Upload document:" %>

<%= f.button :submit %>

<% end %>

最佳答案

离开 input_html: 这就是它不起作用的原因。像这样定义它:

<%= f.collection_select :category_id, Category.all, :id, :name, {promt: "Choose a category" }, { class: "form-dropdown" } %>

 <%= f.collection_select :category_id, Category.all, :id, :name, promt: "Choose a category", class: "form-dropdown" %>

关于css - 自定义简单表单 Collection_Select,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38986522/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com