How to style HTML select/option tag?

前端 未结 5 836
醉话见心
醉话见心 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-14 21:50

    You can give style to select tag like this or you can use class name or id as well

    select
    {
        display: inline-block;
        width: 150px;
        height: 20px;
        padding: 3px 6px;
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 20px;
        color: #555555;
        vertical-align: middle;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
    

提交回复
热议问题