如何更改bootstrap-select下拉菜单的字体大小?

时间:2017-08-04 18:03:36

标签: python html django bootstrap-4 bootstrap-select

我尝试设置一个单独的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
    }

1 个答案:

答案 0 :(得分:0)

在DOM中指定一个类时,不要使用.,只能在CSS(或jQuery)中访问它。将'selectpicker .selectStyle'更改为'selectpicker selectStyle',这应该可以解决问题。

fund = forms.ChoiceField(choices=FUND, required=True, widget=forms.Select(attrs={'class': 'selectpicker selectStyle'}))