HTML CSS examples for CSS Widget:Button
Button styling for border radius, background color and width height
<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>