Answers for "padding html"

CSS
4

padding 4 values

padding: top right bottom left;

padding: 1em 3px 30px 5px;  /* top:    1em padding  */
                            /* right:  3px padding  */
                            /* bottom: 30px padding */
                            /* left:   5px padding  */
Posted by: Guest on December-18-2020
4

padding 4 values

padding: top right bottom left;

padding: 1em 3px 30px 5px;  /* top:    1em padding  */
                            /* right:  3px padding  */
                            /* bottom: 30px padding */
                            /* left:   5px padding  */
Posted by: Guest on December-18-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
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
3

css top padding

padding-top: 25px;
Posted by: Guest on October-03-2020
3

css top padding

padding-top: 25px;
Posted by: Guest on October-03-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
-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
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

Browse Popular Code Answers by Language