Expandable Buttons - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Expandable Buttons

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

#lol {<!-- ww  w. j a  va  2 s . com-->
   color: white;
   font-size: 2em;
   background: yellow;
   border: 5px solid orange;
   border-radius: 3px;
   padding: 10px 20px;
   width: 50%;
}

      </style> 
 </head> 
 <body> 
  <button id="lol">Some long text hello</button>  
 </body>
</html>

Related Tutorials