|
home / documentation / reference / itempadding
ItemPadding
- Description:
- The space, in pixels, between the menu item's content and
the edge of the menu item.
- Value:
- Integer, or JavaScript expression that returns an integer.
Negative values are not allowed.
- Applies To:
- Menu Items.
- Browser Compatibility:
- ItemPadding is supported in all browsers.
- Comments:
- You must always specify ItemPadding as an integer, or a
JavaScript expression that returns an integer. Do not use quoted strings or
non-numerical characters when defining ItemPadding.
ItemPadding is always interpreted by HM as pixels.

- Examples:
// Ok:
ItemPadding:5,
ItemPadding:0,
ItemPadding:(HM_NS4)?3:2, // 3 if NS4, 2 otherwise
// Incorrect:
ItemPadding:3.8,
ItemPadding:-3,
ItemPadding:"2", // quotes not allowed
ItemPadding:"(HM_NS4)?3:2", // no quoted expressions
- Default:
- 3
- See Also:
-
MenuPaddingTop,
MenuPaddingRight,
MenuPaddingBottom,
MenuPaddingLeft
|