xxxxxxxxxx
padding: <padding-top> || <padding-right> || <padding-bottom> || <padding-left>
/* shorthand padding*/
.box {
padding: 20px;
}
/* The same padding written longhand */
.box {
padding-top: 20px;
padding-right: 20px;
padding-bottom: 20px;
padding-left: 20px;
}
xxxxxxxxxx
padding: 5px 10px 15px 20px; //top right bottom left
padding: 10px 20px;//top & bottom then left & right
padding-top: 5px; //just top padding
padding-right: 10px; //just right padding
padding-bottom: 15px; //just bottom padding
padding-left: 20px; //just left padding
xxxxxxxxxx
div {
padding-top: 50px;
padding-right: 30px;
padding-bottom: 50px;
padding-left: 80px;
}
/* You can also write above code in one line */
div{
padding: 50px 30px 50px 80px; /* top right bottom left; (moving clockwise) */
}
xxxxxxxxxx
padding:10px 5px 15px 20px;
means
top padding is 10px
right padding is 5px
bottom padding is 15px
left padding is 20px
xxxxxxxxxx
<h2 style="padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px">London</h2>
xxxxxxxxxx
a {
display: block;
padding: 5px 10px 15px 20px; //top right bottom left
padding: 10px 20px;//top & bottom then left & right
}
xxxxxxxxxx
Padding is the defined space around an element
/* Here is how it works */
padding: 10px; /* for all sides i.e. top, bottom, right, left */
padding: 10px 5px; /* top & bottom , right & left */
padding: 10px 5px 15px; /* top, right & left, bottom */
padding: 10px 5px 15px 20px; /* top, right, bottom, left */(clockwide-rotation)
/* Each side can be defined individually */
padding-top: 10px;
padding-right: 5px;
padding-bottom: 15px;
padding-left: 20px;
xxxxxxxxxx
.box {
padding: <padding-top> || <padding-right> || <padding-bottom> || <padding-left>
}
xxxxxxxxxx
/* Apply to all four sides */
padding: 1em;
/* vertical | horizontal */
padding: 5% 10%;
/* top | horizontal | bottom */
padding: 1em 2em 2em;
/* top | right | bottom | left */
padding: 5px 1em 0 2em;
/* Global values */
padding: inherit;
padding: initial;
padding: revert;
padding: revert-layer;
padding: unset;
xxxxxxxxxx
.yourClass {
padding-left: 50px; // or
padding-left: 1%; // to scale it in relation to its parent
}
xxxxxxxxxx
padding: 00px 00px 0px 0px; //top right bottom left
// mnemonic to remeber positions Te-Rri-B-Le (terrible)