我尝试设置一个单独的css类来覆盖下拉菜单的样式。但是,它没有用。
#form.py
class fundForm(forms.Form):
fund = forms.ChoiceField(choices=FUND, required=True, widget=forms.Select(attrs={'class': 'selectpicker .selectStyle'}))
class META:
model = fundList
#html
.selectStyle{
font-size: 5px
}
答案 0 :(得分:0)
在DOM中指定一个类时,不要使用.
,只能在CSS(或jQuery)中访问它。将'selectpicker .selectStyle'
更改为'selectpicker selectStyle'
,这应该可以解决问题。
fund = forms.ChoiceField(choices=FUND, required=True, widget=forms.Select(attrs={'class': 'selectpicker selectStyle'}))