Ver Mensaje Individual
  #7 (permalink)  
Antiguo 07/06/2002, 12:21
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 22 años, 8 meses
Puntos: 381
Re: Cambio de color al pasar raton

:) bueno paciencia que verás como al final sale.

Mira, en el código fuente tienes al principio los siguiente:

<html>
<head>
<title> El título de tu página</title>

Pues por ejemplo debajo pones lo siguiente:

<style type="text/css">
a:hover{color:#00ffff;font-weight:bold}
</style>


De forma que te quedará:

<html>
<head>
<title> El título de tu página</title>

<style type="text/css">
a:hover{color:#00ffff;font-weight:bold}
</style>

</head>
<body.......

Y yá está. Luego cuando crees un enlace automáticamente te cambiará de aspecto al pasar el raton sobre éste.