Tema: hover y FF
Ver Mensaje Individual
  #12 (permalink)  
Antiguo 25/02/2008, 14:43
cuideru
 
Fecha de Ingreso: febrero-2007
Mensajes: 109
Antigüedad: 17 años, 2 meses
Puntos: 1
Re: hover y FF

A ver, encontré una solución. De esta manera he hecho botoneras toda la vida y va bien tanto en Ie como FF, pero... de veras que no hay una forma más simple?

gracias,
Cuideru

Código HTML:
<STYLE type="text/css">

#menu{
	margin:0px;
	padding:0px;
	list-style:none;
}

#menu li{
	margin:0px;
	padding:0px;
}

#menu li a.enlace{ 
	width: 200;
	height: 155;
	display: block;
	position: relative;
	background-image: url(chalet2.jpg);
	background-repeat: no-repeat;
}

#menu li a.enlace:hover{
	width:191;
	height:150; 
	background-color: transparent;
	background-image: url(ayuntamiento.jpg);
	background-repeat: no-repeat;
}

.rollovers{
	width:780;
	height:21px;
	margin-left:-378px;
	position:absolute; 
	top:114px;
	left:50%;
}

</STYLE>
</HEAD>

<BODY>


<DIV class="rollovers">
 <ul id="menu">

	<li><a href="mailto:[email protected]" class="enlace"></a></li>
	
  </ul>
</DIV>