5

我有一个简单的按钮,但我不能让图标居中。

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

CSS:

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

此图像为 72x72 像素。

4

2 回答 2

4

我认为,您需要背景位置

.startbutton { 
    background-position: center center;
    background-image: url(Camera.png) !important;
}
于 2012-07-17T13:35:43.120 回答
1

您是否有理由不使用标准的东西:

icon: '',
iconAlign: 'center'
于 2012-07-17T15:50:44.650 回答