How to style HTML select/option tag?

前端 未结 5 866
醉话见心
醉话见心 2021-01-14 21:38

I would like to create a dropdown menu with html select thus I would like to style it as well. I would like to set a padding to the option tags so they wouldn\'t be so overc

5条回答
  •  南方客
    南方客 (楼主)
    2021-01-14 21:50

    Disabling the default setting can enable you a little more freedom - give your select a class, within that class use the following:

    -webkit-appearance:none; 
    -moz-appearance:none; 
     appearance:none;
    

    and then add in your default style

提交回复
热议问题