Text Padding in Select Boxes

前端 未结 6 738
孤街浪徒
孤街浪徒 2020-11-30 06:29

I\'ve just encountered an obscure issue with select boxes having additional space around text which doesn\'t seem part of the box model. Here are two pictures o

6条回答
  •  我在风中等你
    2020-11-30 07:07

    To edit the select box you have to use jQuery (or javascript in general).

    Anyway, you can solve the problem using this "trick":

    http://jsfiddle.net/Clear/hwzd88o5/6/

    Look at:

    select.textIndent
    {
        height: 80px;
        line-height: 80px;
        width: 300px;
        padding-left: 50px !important;
    }
    

    ;)

提交回复
热议问题