有 1 个 Div 容器,我想在其中呈现我的完整应用程序。应用程序应填写整个 Div 宽度。
我尝试了以下两个 Div,但 Div-container 仍然不是 100%,甚至没有宽度,就像没有内容一样。怎么了?
<div id="stuff"></div>
和
<div style="width: 100%;" id="stuff"></div>
我的 ExtJS 应用程序:
launch: function() {
var div = Ext.Element.get('stuff');
Ext.create('Ext.panel.Panel', {
renderTo: div,
width: "100%",
height: 500,
title: 'Container Panel',
layout: 'border',
items: [
{
xtype: 'panel',
title: 'Child Panel 1',
height: '80%',
width: '100%'
},
{
xtype: 'panel',
title: 'Child Panel 2',
html: 'textextetxtext',
height: '80%',
width: '100%'
}
]
});
}