Answers for "what is padding and margin in css"

CSS
71

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
Posted by: Guest on March-01-2020
71

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
Posted by: Guest on March-01-2020
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
3

css padding

padding: 1%;  // scales proportionally - on ALL sides
Posted by: Guest on July-03-2020
3

css padding

padding: 1%;  // scales proportionally - on ALL sides
Posted by: Guest on July-03-2020
1

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.
Posted by: Guest on May-25-2021
1

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.
Posted by: Guest on May-25-2021

Code answers related to "what is padding and margin in css"

Browse Popular Code Answers by Language