how to add a link style in a button. So, i have a link style:
a:link {color:#FFFFFF;}
a:visited {color:#FFFFFF;}
a:hover {color:#FFFFFF;}
a:active {color:#FFFFFF;}
how to integrate this style with this button css.
button {
text-decoration: none;
text-shadow: 0 1px 0 #000000;
font: bold 11px Helvetica, Arial, sans-serif;
color: #FFFFFF;
line-height: 17px;
height: 18px;
display: inline-block;
float: left;
margin: 5px;
padding: 5px 6px 4px 6px;
background: #F3F3F3;
border: solid 1px #D9D9D9;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-transition: border-color .20s;
-moz-transition: border-color .20s;
-o-transition: border-color .20s;
transition: border-color .20s;
height: 29px !important;
cursor: pointer;
}
a:link {color:#FFFFFF;} a:visited {color:#FFFFFF;} a:hover {color:#FFFFFF;} a:active {color:#FFFFFF;}in .css file then all links going to be white, but i want to change the color of links only in buttons..a:linktobutton a:link {etc.