Cita:
Código CSS:<html>
<head>
<title>Sprite</title>
<link rel="stylesheet" type="text/css" href="stole.css">
</head>
<body>
<div class="boton"></div>
</body>
</html>
<head>
<title>Sprite</title>
<link rel="stylesheet" type="text/css" href="stole.css">
</head>
<body>
<div class="boton"></div>
</body>
</html>
Cita:
Tengo un problema al realizar la técnica de rollover con css Sprite..boton{
width:46px;
height:25px;
background: transparent url(sprite.png) no-repeat;
float: left;
}
.boton:hover{
background-position: 0px -24px;
}
width:46px;
height:25px;
background: transparent url(sprite.png) no-repeat;
float: left;
}
.boton:hover{
background-position: 0px -24px;
}
Al abrir la página se ve la imagen pero al pasar el ratón por encima no cambia.