【发布时间】:2014-02-05 13:56:25
【问题描述】:
这是我的标题和它的项目;如您所见,我尝试添加 style 属性,但无济于事 - 链接仍左对齐,而我希望它右对齐:
items: [
{
region: 'north',
xtype: 'header',
items:[
{
xtype: 'component',
autoEl: {
html: '<a href="#">View All Services</a>'
},
style: {
textAlign: 'right',
left: 'auto',
right: '0'
},
listeners: {
render: function(component) {
component.getEl().on('click', function(e) {
alert('test');
});
}
}
}
],
padding: 6
}
如何将我的项目与标题中的右侧对齐?
【问题讨论】:
标签: javascript extjs