Ridimensionare l'immagine di un pulsante
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Ridimensionare l'immagine di un pulsante
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.
- Labels:
-
Best Practices
-
Examples
-
Troubleshooting
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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