padding
Sets the padding area on all four sides of an element (inside the border).
Syntax
css
padding: value;
padding: top right bottom left;Example
css
.card { padding: 24px; }
.btn { padding: 12px 24px; }
.section { padding: 48px 24px; }Sets the padding area on all four sides of an element (inside the border).
padding: value;
padding: top right bottom left;.card { padding: 24px; }
.btn { padding: 12px 24px; }
.section { padding: 48px 24px; }