Is there a way to style a div element within an HTML document using Sencha framework? I have specific CSS properties that I would like to apply to my div.
#logo{
position:absolute;
top:20%;
left:0%;
}
Below is a snippet of my Sencha code:
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("")
}
]
});
}
});