Submit button with new font and size - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Submit button with new font and size

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">
*, *:before, *:after {<!-- w ww . j a  v  a  2  s. c o  m-->
   box-sizing:border-box;
}

body, button {
   margin:0;
   padding:0;
}

#submit {
   font:301 41px Arial, sans-serif;
   width:100%;
   display:block;
   text-align:center;
   border:none;
}
</style> 
 </head> 
 <body> 
  <button type="submit" id="submit">Lore</button>  
 </body>
</html>

Related Tutorials