I have a very basic question. I am setting height to 50px for my html form submit button. It works on Firefox but not Chrome nor Safari. The code is as simple as following:<
Adding to Şήøωў's (upvoted)answer:
@ Safari 11.0.2 (13604.4.7.1.3) @ macOS 10.13.2 (17C88)
e.g.
input[type=button]{
-webkit-appearance: button;
}
solved my issue (of only -size of mostly [-webkit-]font-* having very limited effect);
overriding "User Agent Stylesheet":
input:matches([type="button"], [type="submit"], [type="reset"]){
-webkit-appearance: push-button;
}