How can I increase the submit button font size? In chrome in particular, it's too small and the text looks squished. Working fiddle
body, input {
font-size: 30px;
}
I know there is
-webkit-appearance: none;
but that resets a lot of other styling. I'd like to keep the default styling, just with a different font size.
Webkit will respect your custom form element styles if you set a border or box-shadow property (yes, weird). As others have said, start with at least
-webkit-appearance: none;
(I'd add-moz-appearance: none; appearance: none;
) and then refer to to this answer to "HTML select font-size"