padding left right top bottom code example

Example 1: css padding

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

Example 2: padding left

.yourClass {
  padding-left: 50px; // or
  padding-left: 1%; // to scale it in relation to its parent
}

Example 3: css padding

padding: 5px 10px 15px; //top then left & right then bottom

Example 4: css top bottom left right order

Mnemonics for remembering the CSS order of top right bottom

Tags:

Css Example