Change border shape of button - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Change border shape of button

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <style>

.submit1 {<!-- ww w  . java  2s .co  m-->
   background-color: #ff7704;
   border: medium none;
   border-radius: 10px;
   color: #fff;
   font-size: 23px;
   font-weight: bold;
   padding: 15px;
   padding-right:70px;
   min-width: 140px;
   background-image:url('https://www.java2s.com/style/demo/Firefox.png');
   background-size: contain;
   background-repeat: no-repeat;
   background-position: right;
}

      </style> 
 </head> 
 <body> 
  <button class="submit1">Upload Picture</button>  
 </body>
</html>

Related Tutorials