html padding top 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: css top padding

padding-top: 25px;

Example 3: css padding attribute order

padding: top, right, bottom, and left

Example 4: css padding

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

Example 5: css padding

padding: 1%;  // scales proportionally - on ALL sides

Tags:

Css Example