如何在 Sencha 中格式化 html 中的 div?我想在我的 html 上实现以下属性
#logo{
position:absolute;
top:20%;
left:0%;
}
我的 Sencha 代码示例在这里
Ext.application({
name: 'Sencha',
launch: function() {
Ext.create("Ext.tab.Panel", {
fullscreen: true,
tabBarPosition: 'bottom',items: [
{
title: 'Home',
iconCls: 'home',
cls: 'home',
html: [
'<div id="logo">My logo here</div>'
].join("")
}
]
});
}
});