请帮我垂直居中,并带有标签和值。为什么"对齐:'中'"不会使按钮文本出现在与显示字段内容相同的级别?
答案 0 :(得分:1)
为两个字段应用固定高度,并使用line-height对齐中心
items: [
{
xtype: 'displayfield',
fieldLabel: 'My Label',
labelWidth: 200,
height: '40',
value: 'My Value',
labelStyle: 'line-height:24px;',
fieldStyle: 'line-height:24px;'
},
{
xtype: 'button',
height: 40,
text: 'too low'
}
]
答案 1 :(得分:0)
也许自定义CSS样式就足够了:
{
xtype: 'displayfield',
fieldLabel: 'My Label',
labelWidth: 200,
value: 'My Value',
style: 'padding-top: 8px;' // - custom style
}