como uno dos clases en un HREF....
onda tengo, por ejemplo
Código:
<style>
/*color linksa */
a.linksa:visited { color: #000000;}
a.linksa{ color: #000000;}
a.linksa:hover {color: #666666;}
a.linksa { outline:none; }
/*y ademas*/
thumbnailx{
position: relative;
z-index: 0;
}.thumbnailx:hover{
background-color: transparent;
z-index: 50;
}.thumbnailx span{ /*CSS for enlarged image*/
position: absolute;
left: 0px;
visibility: hidden;
text-decoration: none;
}
.thumbnailx span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnailx:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
left: 180px; /*position where enlarged image should offset horizontally */
}
</style>
entonces en el href habia puesto un class="linksa, thumbnailx" pero por comas no me lo toma :/ como se unen dos clases...me pregunto yo :P
<a href="#pagina" class="linksa, thumbnailx">PAGINA</a>