Answers for "text padding html"

CSS
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;
}
Posted by: Guest on February-26-2021
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;
}
Posted by: Guest on February-26-2021
-1

html padding

<h2 style="padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px">London</h2>
Posted by: Guest on October-22-2020
-1

html padding

<h2 style="padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px">London</h2>
Posted by: Guest on October-22-2020
0

what is padding in html

padding sizing; clockwise
Posted by: Guest on May-04-2021
0

what is padding in html

padding sizing; clockwise
Posted by: Guest on May-04-2021

Browse Popular Code Answers by Language