padding和bodyPadding有什么区别

时间:2012-12-25 12:32:44

标签: extjs

Ext.panel.AbstractPanelView课程有paddingbodyPadding属性。

似乎两者都是一样的。

有什么区别?

1 个答案:

答案 0 :(得分: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.

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