Answers for "padding use in 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

css padding property

padding: 00px 00px 0px 0px; //top right bottom left
// mnemonic to remeber positions Te-Rri-B-Le (terrible)
Posted by: Guest on August-17-2021
1

css padding property

padding: 00px 00px 0px 0px; //top right bottom left
// mnemonic to remeber positions Te-Rri-B-Le (terrible)
Posted by: Guest on August-17-2021
5

css padding

padding: 5px 10px 15px; //top then left & right then bottom
Posted by: Guest on August-31-2020
5

css padding

padding: 5px 10px 15px; //top then left & right then bottom
Posted by: Guest on August-31-2020
4

padding css

padding is clockwise
Posted by: Guest on July-10-2020
4

padding css

padding is clockwise
Posted by: Guest on July-10-2020

Browse Popular Code Answers by Language