when using padding or margin code example
Example 1: css padding vs margin
/* Answer to: "css padding vs margin" */
/*
Margin is outer space of an element, while padding is inner space
of an element. Margin is the space outside the border of an
element, while padding is the space inside the border of it.
Margin accepts the value of auto: margin: auto , but you can't
set padding to auto.
For more information, head over to:
https://stackoverflow.com/questions/2189452/when-to-use-margin-vs-padding-in-css
*/
Example 2: what is padding in css
An element's padding area is the space between its content and its border. Note: Padding creates extra space within an element. In contrast, margin creates extra space around an element.