1

Ext.panel.AbstractPanelView类具有paddingbodyPadding属性。

似乎两者的行为相同。

有什么不同?

4

1 回答 1

3

根据文档:http ://docs.sencha.com/ext-js/4-0/#!/api/Ext.panel.Panel-cfg-bodyPadding

padding : Number/String
Specifies the padding for this component. The padding can be a single numeric value to apply     to all sides or it can be a CSS style specification for each style, for example: '10 5 3 10'.


bodyPadding : Number/String
A shortcut for setting a padding style on the body element. The value can either be a number to be applied to all sides, or a normal css string describing padding.

所以区别在于将应用什么元素填充。

于 2012-12-25T12:59:35.507 回答