CSS: How to increase the size of a OSX submit button

后端 未结 8 1804
我寻月下人不归
我寻月下人不归 2021-01-11 12:28

How do I increase the native FORM submit button size for OSX-Safari?

I want to keep the native look of a FORM submit button for it\'s r

8条回答
  •  伪装坚强ぢ
    2021-01-11 12:50

    I am using several input type="button" and they style ok using:

    input[type="button"] {
    -webkit-appearance: button;
    height:40px;
    }
    

    They did not style without the -wbkit- line.

提交回复
热议问题