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

后端 未结 8 1874
我寻月下人不归
我寻月下人不归 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:56

    Safari's form buttons are notoriously hard to style (if not impossible).

    As others have said, height is pretty much untouchable.

    What you can do is set the font size to an exact pixel size to resize the button.

    input.submitbutton {font-size:14px;}
    

    That should make the font size larger and the button as well. It does max out though...you can't just keep increasing the font size.

提交回复
热议问题