3-d Push Button Effect - CSS Views : 365
Tagged in : CSS
0 0
Send mail

3-d Push Button Effect


The main CSS commands you'll need are:

a {
display: block;
border: 1px solid;
border-color: #aaa #000 #000 #aaa;
width: 8em;
background: #fc0;
}

a:hover
{
position: relative;
top: 1px;
left: 1px;
border-color: #000 #aaa #aaa #000;
}

Aside from these commands, you can insert other commands to achieve the desired presentation effect -- the only limit is your imagination!
By Geethalakshmi, On - 2010-02-09



    Login to add Comments .