I want to vertical-align text in select box

前端 未结 16 1304
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-29 00:25

I want to vertically align the text in select box. I tried using

select{
   verticle-align:middle;
}

however it does not work in any brows

16条回答
  •  隐瞒了意图╮
    2020-11-29 01:01

    Try to set the "line-height" attribute

    Like this:

    select{
        height: 28px !important;
        line-height: 28px;
    }
    

    Here you are some documentation about this attribute:

    http://www.w3.org/wiki/CSS/Properties/line-height

    http://www.w3schools.com/cssref/pr_dim_line-height.asp

提交回复
热议问题