Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Sto creaando un pulsante Immagine.
devo centrare e ridimensionare l'immagine rispetto al tasto.
come devo fare? (vedi immagine)
questa è l'esrcitazione che sto facendo:
Grazie Matteo
Solved! Go to Solution.
devi cambiare il CSS usando i comandi
background-size: 30px 30px;
background-repeat: no-repeat;
background-position:center;
nella sezione .image
sotto ti allego un esempio :
.image, .image.activated {
background-image: url(../app/resources/Uploaded/play.png);
background-size: 30px 30px;
background-repeat: no-repeat;
background-position:center;
}
saluti
Giuseppe
devi cambiare il CSS usando i comandi
background-size: 30px 30px;
background-repeat: no-repeat;
background-position:center;
nella sezione .image
sotto ti allego un esempio :
.image, .image.activated {
background-image: url(../app/resources/Uploaded/play.png);
background-size: 30px 30px;
background-repeat: no-repeat;
background-position:center;
}
saluti
Giuseppe