Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. 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