Change button height using css - HTML CSS CSS Form

HTML CSS examples for CSS Form:input button layout

Description

Change button height using css

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials