add padding html code example
Example 1: padding for text in html
div {
/*Padding for text from the top*/
padding-top: 50px;
/*Padding for text from the right*/
padding-right: 30px;
/*Padding for text from the bottom*/
padding-bottom: 50px;
/*Padding for text from the left*/
padding-left: 80px;
/*If you want to add same amout of padding to all sides use padding*/
padding: 100px;
}
Example 2: 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 3: css padding attribute order
padding: top, right, bottom, and left
Example 4: html padding
<h2 style="padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px">London</h2>