Styling round Button - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Styling round Button

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#hideshow{<!--from  w  w w .j  a v a 2s.  c o  m-->
   margin: 0;
   border-radius: 20px;
   padding: 2px 0px 2px 8px;
   color: #4D7782;
   font-size:18px;
   background: #D3ECE5;
   border-color:#7BC2E3;
   border-style:solid;
   width: 280px;
   text-align: left;
}


      </style> 
 </head> 
 <body> 
  <input id="hideshow" type="button" value="I am a button">  
 </body>
</html>

Related Tutorials