我有一个简单的按钮,但我不能让图标居中。
{
xtype: 'button',
width: 150,
height: 150,
cls: 'startbutton'
}
CSS:
.startbutton {
background-image: url(Camera.png) !important;
}
此图像为 72x72 像素。
我认为,您需要背景位置:
.startbutton {
background-position: center center;
background-image: url(Camera.png) !important;
}
您是否有理由不使用标准的东西:
icon: '',
iconAlign: 'center'