In CSS padding is used to set? code example
Example 1: css padding attribute order
padding: top, right, bottom, and left
Example 2: padding css shorthand
Syntax:
padding: top, right, bottom, left;
Example:
padding: 10px 15px 20px 25px;
/*What it means*/
padding from top 10px
padding from right 15px
padding from bottom 20px
padding from left 25px