Ver Mensaje Individual
  #5 (permalink)  
Antiguo 12/01/2002, 11:27
Avatar de duchamp
duchamp
 
Fecha de Ingreso: enero-2002
Ubicación: Patagonia
Mensajes: 216
Antigüedad: 22 años, 3 meses
Puntos: 1
Re: CSS - Esquemas de links

Darklife, a ver si ésto te sirve:
<pre>&lt;html&gt;
&lt;head&gt;
&lt;style type=&quot;text/css&quot;&gt;
&lt;!--
a:active { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color: #000000; text-decoration: underline overline; font-style: normal; background-color: #CCCCCC}
a:hover { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color: #000000; text-decoration: underline overline; font-style: normal; background-color: #CCCCCC}
a:link { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; font-weight: bold; color: #993300; text-decoration: line-through}
a:visited { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; font-weight: bold; color: #993399; text-decoration: none}

a:active.b1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color: #CC9900; text-decoration: line-through; font-style: normal; background-color: #FFFFFF}
a:hover.b1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color: #CC9900; text-decoration: line-through; font-style: normal; background-color: #FFFFFF}
a:link.b1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; font-weight: bold; color: #993300; text-decoration: underline overline}
a:visited.b1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; font-weight: bold; color: #993399; text-decoration: none}
--&gt;
&lt;/style&gt;
&lt;/head&gt;

&lt;body bgcolor=&quot;#FFFFFF&quot; text=&quot;#000000&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;2&quot; color=&quot;#000000&quot;&gt;Enlace
version 1:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;#&quot;&gt;Link uno&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Enlace version 2:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;#&quot; class=&quot;b1&quot;&gt;Link dos&lt;/a&gt;&lt;br&gt;
&lt;/font&gt;
&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt; </pre>

Suerte!


Duchamp