0

如何在 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("")
                }
               ]
        });
    }
});
4

1 回答 1

0

您可以将其作为内联 css

<div id="logo" style="position:absolute;top:20%;left:0%">
于 2012-09-06T12:22:33.490 回答