HTML CSS examples for CSS Form:input button layout
Change button height using css
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> input#cancel { <!--from w ww. j a v a 2s .c o m--> margin-top: 30px; margin-left: 48px; width: 70px; height: 42px; -webkit-appearance: none; } </style> </head> <body> <input name="cancel" id="cancel" type="button" value="Cancel"> </body> </html>