Answers for "padding w3school"

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
15

padding css

padding:10px 5px 15px 20px;
means
top padding is 10px
right padding is 5px
bottom padding is 15px
left padding is 20px
Posted by: Guest on April-30-2020
15

padding css

padding:10px 5px 15px 20px;
means
top padding is 10px
right padding is 5px
bottom padding is 15px
left padding is 20px
Posted by: Guest on April-30-2020
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

Browse Popular Code Answers by Language