设置面板高度 sencha -touch
我是煎茶触摸新手,需要你的帮助。
我添加新面板并想在 css 中设置该面板的高度。
this.clockContainer = new Ext.Panel({
id:'clock',
html:'00:00'
});
#clock {height:142px}
然而,sencha将高度样式计算为91px(根据html内容)并忽略我的css。
我不想像这样向面板添加高度属性:
this.clockContainer = new Ext.Panel({
id:'clock',
html:'00:00',
height:'142px'
});
我能做什么?如何防止 sencha 计算高度?
谢谢。
编辑:如果我将 height 属性设置为“142px”,它工作正常,但如果我将其设置为“8.06em”,senchs 会忽略它并自行计算。
I am New In sencha -touch and need your help.
I add new panel and want to set the height of this panel in css.
this.clockContainer = new Ext.Panel({
id:'clock',
html:'00:00'
});
#clock {height:142px}
however,sencha calculates the height style to 91px (according to the html content) and ignores my css.
I dont want to add the height property to the panel like this:
this.clockContainer = new Ext.Panel({
id:'clock',
html:'00:00',
height:'142px'
});
what can I do?How can I prevent sencha calculates the height?
thank you.
edit: if I set the height property to '142px' it works fine but if I set it to '8.06em' senchs ignores it and calculate itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要向
Ext.Panel
添加一个cls
属性,如下所示然后在 CSS 中添加此
希望它有帮助
You need to add a
cls
attributes to yourExt.Panel
like soThen in your CSS you add this
Hope it helps