how to include the padding of a tag in 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: what is padding in css

An element's padding area is the space between its content and its border. Note: Padding creates extra space within an element. In contrast, margin creates extra space around an element.

Tags:

Css Example