Button styling for border radius, background color and width height - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Button styling for border radius, background color and width height

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

.button{<!--   www . j  a  v a2  s. c  o m-->
   background-color:blue;
   border-radius:10px;
   width:100px;
   height:50px;
}


      </style> 
 </head> 
 <body> 
  <button class="button">SHOW</button>  
 </body>
</html>

Related Tutorials