Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/02/2002, 15:07
Avatar de BrceWayne
BrceWayne
 
Fecha de Ingreso: marzo-2001
Ubicación: Frente a las ballenas, con el sol sobre el mar y un horizonte lejano de Buenos Aires.
Mensajes: 386
Antigüedad: 23 años, 1 mes
Puntos: 2
Re: Font y color en estado hover de los links

Bueno, estuve investigando entre varios manuales de CSS y descubrí que es totalmente posible, acá les dejo un código de muestra por si acaso a alguien le interesa:
Código:
 <HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="conTexto">
<TITLE>test</TITLE>

<STYLE TYPE="text/css">
<!--
BODY 
   {
   Background-color: ffffff;
   font-family : Arial, Helvetica, sans-serif;
   }
A.Tipo1
   {
   color : 000000; 
   text-decoration : none; 
   }
A.Tipo1:hover
   {
   color : FF9900; 
   font-weight : bold; 
   text-decoration : none; 
   }
A.Tipo2
   {
   color : 00ff00; 
   text-decoration : none; 
   }	
A.Tipo2:hover
   {
   color : FF99FF; 
   font-weight : bold; 
   text-decoration : none; 
   }	
-->
</STYLE>

</HEAD>
<BODY>
<A class=tipo1 HREF=test.htm#M1>Link Tipo 1</A>
<P>
<A class=tipo2 HREF=test.htm#M2>Link Tipo 2</A>
</BODY>
</HTML>
Suerte.

<div align="center"><img src="http://www.solutionsabc.com/firmabrce.gif" width="200" height="42">
</div>