Text size for drop down menu/input select not working in Safari

后端 未结 12 1902
说谎
说谎 2021-02-19 00:17

First question...

I\'m having trouble getting ANY of the Drop down menu/Input Select\'s to appear with size 18 font in Safari.

Works fine in FF.

Code:

12条回答
  •  天命终不由人
    2021-02-19 00:59

    First off this

    .form input{
    font-size:18px;
    margin-bottom:0px;
    }
    

    will not work because you are not styling the select element you are styling input elements. Try this and it will most likely work.

    .form select {
    font-size:18px;
    margin-bottom:0px;
    }
    

提交回复
热议问题