Posted in CSS 12 years ago 2 min read
<button class="css3button" name="" type="button" value="">submit</button>Untuk CSS3 nya:
<style type="text/css">
button.css3button {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
padding: 11px 19px;
background: -moz-linear-gradient(
top,
#42aaff 0%,
#003366);
background: -webkit-gradient(
linear, left top, left bottom,
from(#42aaff),
to(#003366));
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #003366;
-moz-box-shadow:
0px 1px 6px rgba(000,000,000,0.6),
inset 0px 0px 2px rgba(255,255,255,0.5);
-webkit-box-shadow:
0px 1px 6px rgba(000,000,000,0.6),
inset 0px 0px 2px rgba(255,255,255,0.5);
box-shadow:
0px 1px 6px rgba(000,000,000,0.6),
inset 0px 0px 2px rgba(255,255,255,0.5);
text-shadow:
0px -1px 0px rgba(020,019,020,0.7),
0px 1px 0px rgba(242,239,242,0.3);
}
</style>
Semoga bermanfaat.