CSS3 Button Generator

Background

border / padding

  • px
  • px
  • px
  • px

drop shadow

  • px
  • px
  • px

inner shadow

  • px
  • px
  • px

text font

  • px

text shadow 1

  • px
  • px
  • px

text shadow 2

  • px
  • px
  • px

YOUR HTML BUTTON CODE:

YOUR (CSS) STYLESHEET CODE:

/* Begin Pure CSS3 Button Code */
/* == This Script Generated Free At http://snapbuilder.com Free Public Codes Library == */
button.css3button {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
padding: 10px 20px;
background: -moz-linear-gradient(
top,
#a3a3a3 0%,
#3b3b3b 50%,
#242424 50%,
#ffffff 75%,
#000000);
background: -webkit-gradient(
linear, left top, left bottom, 
from(#a3a3a3),
color-stop(0.50, #3b3b3b),
color-stop(0.50, #242424),
color-stop(0.75, #ffffff),
to(#000000));
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border: 1px solid #000000;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.6);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.6);
text-shadow:
0px -1px 0px rgba(000,000,000,1),
0px 1px 0px rgba(255,255,255,0.2);
}