Button Sample

A simple button example with out using any background images.

by santosh_patnala

HTML

<a class="btn1" href="#">Search</a>

CSS

a {
    text-decoration: none;
}
a.btn1 {
    background-color: #FF0000;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    -o-border-radius: 5px 5px 5px 5px;
    color: #FFFFFF;
    display: block;
    font-weight: bold;
    height: 23px;
    padding: 4px 8px;
    text-align: center;
    width: 60px;
}
a.btn1:hover {
    background-color: #D23E3E;
}