PADDING Property In CSS
padding Property in CSS
padding property Shorthand property used to declare all the margin properties at once.
Possible Value:
Separate values by a space in the following order (those that are not defined will use inherited or default initial values): padding-top padding-right padding-bottom padding-left
Examplediv { padding:5px 12px 4px 7px; }
div { padding:5px; }
div { padding:5px 10px; }
div { padding:5px 7px 4px; }