Tengo un botón con imagen el cual deseo agregarle un texto en la parte de abajo.
Este es mi css:
Cita:
Gracias por su ayuda a.boton_inicio {
width:100px;
height:125px; /* Dimensiones de la imagen */
text-indent:9999px;
overflow:hidden; /* Oculatando el texto del enlace */
display:block; /* Poniendo la imagen como fondo */
background-image: url(../images/icono_inicio.png);
background-repeat: no-repeat;
background-position: center 10px;
}
a.boton_inicio:hover {
background-image: url(../images/icono_inicio.png);
background-repeat: no-repeat;
background-position: center 5px;
}
width:100px;
height:125px; /* Dimensiones de la imagen */
text-indent:9999px;
overflow:hidden; /* Oculatando el texto del enlace */
display:block; /* Poniendo la imagen como fondo */
background-image: url(../images/icono_inicio.png);
background-repeat: no-repeat;
background-position: center 10px;
}
a.boton_inicio:hover {
background-image: url(../images/icono_inicio.png);
background-repeat: no-repeat;
background-position: center 5px;
}