Difference between revisions of "CSS GUIDE PADDING TOP"
(→Legal Values) |
|||
Line 8: | Line 8: | ||
== Legal Values == | == Legal Values == | ||
* length - entered in pixels (px), centimetres (cm) or inches (in)<br /> | * length - entered in pixels (px), centimetres (cm) or inches (in)<br /> | ||
− | * % - entered as a percentage. | + | * % - entered as a percentage corresponding to the height of closest element. |
== Mozilla Recommended Values == | == Mozilla Recommended Values == |
Revision as of 03:32, 12 December 2006
Contents
Summary
This property sets the top padding of an given element.
- Inherited: No
Syntax
TARGET_ELEMENT {padding-top: value;}
Legal Values
- length - entered in pixels (px), centimetres (cm) or inches (in)
- % - entered as a percentage corresponding to the height of closest element.
Mozilla Recommended Values
Usage Examples
h2 {padding-top: 10px;} Sets the top padding to be 10 pixels
h1 {padding-top: 10%;} Sets the top padding to be 10% the height of the closest element.
Notes
Negative values are not allowed.