How to center icon on extjs button?

I have a simple button, but I can not get it to center.

{
    xtype: 'button',
    width: 150,
    height: 150,
    cls: 'startbutton'
}

CSS

.startbutton { 
    background-image: url(Camera.png) !important;
}

This image is 72x72 pixels in size.

+5
source share
2 answers

I think you need background-position :

.startbutton { 
    background-position: center center;
    background-image: url(Camera.png) !important;
}
+4
source

Is there a reason you are not using standard things:

icon: '',
iconAlign: 'center'
+1
source

All Articles